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

remotes/origin/etag-endpoint
Robin Appelman 11 years ago
parent 2a8c3798a8
commit faa4918355
  1. 2
      lib/private/db/connection.php

@ -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());
}
}

Loading…
Cancel
Save