diff --git a/system/view.php b/system/view.php index 81f4c426..d8ba7acc 100644 --- a/system/view.php +++ b/system/view.php @@ -168,7 +168,7 @@ public function get() ob_start() and extract($this->data, EXTR_SKIP); - try { include $this->path.$view.EXT; } catch (\Exception $e) { Error::handle($e); } + try { include $this->path.$view.EXT; } catch (\Exception $e) { Exception\Handler::make($e)->handle(); } return ob_get_clean(); }