11 lines
170 B
PHP
11 lines
170 B
PHP
|
<?php
|
||
|
namespace Szurubooru;
|
||
|
|
||
|
class NotSupportedException extends \BadMethodCallException
|
||
|
{
|
||
|
public function __construct()
|
||
|
{
|
||
|
parent::__construct('Not supported');
|
||
|
}
|
||
|
}
|