You are here

DatabaseException.php in Drupal 10

File

core/lib/Drupal/Core/Database/DatabaseException.php
View 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

Namesort descending Description
DatabaseException Interface for a database exception.