| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 38 | protected function handleViewException(Throwable $baseException, $obLevel) |
||
| 39 | { |
||
| 40 | $exception = new ViewException($baseException->getMessage(), 0, 1, $baseException->getFile(), $baseException->getLine(), $baseException); |
||
| 41 | |||
| 42 | $exception->setView($this->getCompiledViewName($baseException->getFile())); |
||
| 43 | $exception->setViewData($this->getCompiledViewData($baseException->getFile())); |
||
| 44 | |||
| 45 | parent::handleViewException($exception, $obLevel); |
||
| 46 | } |
||
| 47 | } |
||
| 48 |