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