1 | <?php |
||
18 | class MethodNotAllowedException extends \Exception |
||
19 | { |
||
20 | /** |
||
21 | * MethodNotAllowedException constructor. |
||
22 | * |
||
23 | * @param string $message |
||
24 | * @param int $code |
||
25 | * @param \Exception $previous |
||
26 | */ |
||
27 | public function __construct($message = 'Method is not allowed.', $code = 0, \Exception $previous = null) |
||
31 | } |
||
32 |