| 1 | <?php |
||
| 21 | class ServerInternalErrorException extends HttpException |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * Constructor. |
||
| 25 | * |
||
| 26 | * @param string $message The internal exception message |
||
| 27 | * @param \Exception $previous The previous exception |
||
| 28 | * @param int $code The internal exception code |
||
| 29 | */ |
||
| 30 | public function __construct($message = null, \Exception $previous = null, $code = 0) |
||
| 34 | } |
||
| 35 |