fixed bug that prevented view exception from being shown.

This commit is contained in:
Taylor Otwell 2011-08-25 22:55:11 -05:00
parent 812d3ff51f
commit cda4567446
1 changed files with 1 additions and 1 deletions

View File

@ -158,7 +158,7 @@ public function get()
if ( ! file_exists($this->path.$view.EXT))
{
Exception\Handler::make(new Exception("View [$view] does not exist."))->handle();
Exception\Handler::make(new \Exception("View [$view] does not exist."))->handle();
}
foreach ($this->data as &$data)