1 | <?php |
||
21 | class TemplateNotFound extends \LogicException implements Exception |
||
22 | { |
||
23 | use AccessorTrait; |
||
24 | |||
25 | /** |
||
26 | * @var array |
||
27 | */ |
||
28 | private $tried; |
||
29 | |||
30 | /** |
||
31 | * @return array |
||
32 | */ |
||
33 | protected function get_tried() |
||
37 | |||
38 | public function __construct($message, array $tried, $code = 404, \Exception $exception = null) |
||
54 | } |
||
55 |