DatabaseException.php in Drupal 10
Same filename and directory in other branches
Namespace
Drupal\Core\DatabaseFile
core/lib/Drupal/Core/Database/DatabaseException.phpView source
<?php
// phpcs:ignoreFile
namespace Drupal\Core\Database;
/**
* Interface for a database exception.
*
* Database drivers should catch lower-level database client exceptions and
* throw exceptions that implement this interface to allow database
* abstraction in Drupal.
*/
interface DatabaseException {
}
Interfaces
Name | Description |
---|---|
DatabaseException | Interface for a database exception. |