Browse Source

Trim exception message in database manager.

Taylor Otwell 13 years ago
parent
commit
a6bb5f26a3
1 changed files with 2 additions and 2 deletions
  1. 2 2
      laravel/database/manager.php

+ 2 - 2
laravel/database/manager.php

@@ -38,7 +38,7 @@ class Manager {
 
 			if (is_null($config))
 			{
-				throw new \OutOfBoundsException("Database connection is not defined for connection [$connection].");
+				throw new \OutOfBoundsException("Connection is not defined for [$connection].");
 			}
 
 			static::$connections[$connection] = new Connection(static::connect($config), $config);
@@ -131,4 +131,4 @@ class Manager {
 		return call_user_func_array(array(static::connection(), $method), $parameters);
 	}
 
-}
+}