1 | <?php |
||
11 | class Exception extends \Exception |
||
12 | { |
||
13 | |||
14 | /** |
||
15 | * @var string |
||
16 | */ |
||
17 | protected $template = ''; |
||
18 | |||
19 | /** |
||
20 | * @param string|array|null $message Exception message |
||
21 | * @param int $code Exception Code |
||
22 | * @param null|\Exception $previous |
||
23 | */ |
||
24 | 27 | public function __construct($message, int $code = 0, \Exception $previous = null) |
|
32 | } |
||
33 |