1 | <?php |
||
10 | class NonFatalException extends \RuntimeException |
||
11 | { |
||
12 | /** |
||
13 | * Make message mandatory. |
||
14 | * |
||
15 | * @param string $message |
||
16 | * @param integer $code defaults to 0 |
||
17 | * @param \Exception|null $previous |
||
18 | */ |
||
19 | public function __construct($message, $code = 0, \Exception $previous = null) |
||
23 | } |
||
24 |