Browse Source

changed route __call exception.

Taylor Otwell 13 years ago
parent
commit
3a08b138b0
1 changed files with 2 additions and 1 deletions
  1. 2 1
      laravel/routing/route.php

+ 2 - 1
laravel/routing/route.php

@@ -209,7 +209,8 @@ class Route {
 	public function __call($method, $parameters)
 	public function __call($method, $parameters)
 	{
 	{
 		if (strpos($method, 'is_') === 0) return $this->is(substr($method, 3));
 		if (strpos($method, 'is_') === 0) return $this->is(substr($method, 3));
-		throw new \Exception('Method "'.$method.'" not found', E_NOTICE);
+
+		throw new \Exception("Call to undefined method [$method] on Route class.");
 	}
 	}
 
 
 }
 }