be a little more verbose in the exception message when we cant connect to the db

This commit is contained in:
Robin Appelman 2015-03-20 03:56:38 +01:00
parent 2a8c3798a8
commit faa4918355
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ class Connection extends \Doctrine\DBAL\Connection implements IDBConnection {
return parent::connect();
} catch (DBALException $e) {
// throw a new exception to prevent leaking info from the stacktrace
throw new DBALException($e->getMessage(), $e->getCode());
throw new DBALException('Failed to connect to the database: ' . $e->getMessage(), $e->getCode());
}
}