function Connection::exceptionHandler
Returns the database exceptions handler.
@todo in drupal:11.0.0, return a new ExceptionHandler instance directly.
Return value
\Drupal\Core\Database\ExceptionHandler The database exceptions handler.
5 methods override Connection::exceptionHandler()
- Connection::exceptionHandler in core/
modules/ sqlite/ src/ Driver/ Database/ sqlite/ Connection.php - Returns the database exceptions handler.
- Connection::exceptionHandler in core/
modules/ mysql/ src/ Driver/ Database/ mysql/ Connection.php - Returns the database exceptions handler.
- Connection::exceptionHandler in core/
modules/ pgsql/ src/ Driver/ Database/ pgsql/ Connection.php - Returns the database exceptions handler.
- Connection::exceptionHandler in core/
tests/ fixtures/ database_drivers/ custom/ fake/ Connection.php - Returns the database exceptions handler.
- StubConnection::exceptionHandler in core/
tests/ Drupal/ Tests/ Core/ Database/ Stub/ StubConnection.php - Returns the database exceptions handler.
File
-
core/
lib/ Drupal/ Core/ Database/ Connection.php, line 1045
Class
- Connection
- Base Database API class.
Namespace
Drupal\Core\DatabaseCode
public function exceptionHandler() {
$class = $this->getDriverClass('ExceptionHandler');
return new $class();
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.