| 1 | <?php |
||
| 13 | class InternalErrorException extends Exception implements RouterExceptionInterface |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * Returns the associated status code with the exception. By default, most exceptions correspond |
||
| 17 | * to a server error (HTTP 500). Override this method if you want your exception to generate a |
||
| 18 | * different status code. |
||
| 19 | * @return The associated status code. |
||
| 20 | */ |
||
| 21 | 5 | public function getAssociatedStatusCode() |
|
| 25 | } |
||
| 26 |