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

View File

@@ -158,7 +158,7 @@ class View {
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)