Browse Source

Fix white screen of death error when view doesn't exist.

Taylor Otwell 13 years ago
parent
commit
b3a2c3537a
1 changed files with 2 additions and 2 deletions
  1. 2 2
      system/view.php

+ 2 - 2
system/view.php

@@ -1,4 +1,4 @@
-<?php namespace System;
+<?php namespace Laravel;
 
 class View {
 
@@ -158,7 +158,7 @@ class View {
 
 		if ( ! file_exists($this->path.$view.EXT))
 		{
-			throw new \Exception("View [$view] does not exist.");
+			Exception\Handler::make(new Exception("View [$view] does not exist."))->handle();
 		}
 
 		foreach ($this->data as &$data)