Remove extra argument from exception

This commit is contained in:
Timothy Warren 2012-07-27 16:11:43 +00:00
parent 091484785f
commit 84d5bd492b
1 changed files with 1 additions and 1 deletions

View File

@ -254,7 +254,7 @@ class Query_Builder {
} }
catch(Exception $e) catch(Exception $e)
{ {
throw new BadConnectionException('Connection failed, invalid arguments', 2, $e); throw new BadConnectionException('Connection failed, invalid arguments', 2);
} }
// Set the connection name property, if applicable // Set the connection name property, if applicable