Further Drupal 8.6.4 changes. Some core files were not committed before a commit...
[yaffs-website] / web / core / lib / Drupal / Core / Database / DatabaseException.php
1 <?php
2 // @codingStandardsIgnoreFile
3
4 namespace Drupal\Core\Database;
5
6 /**
7  * Interface for a database exception.
8  *
9  * All Database exceptions should implement this interface so that they can be
10  * caught collectively.  Note that this applies only to Drupal-spawned
11  * exceptions.  PDOException will not implement this interface and module
12  * developers should account for it separately.
13  */
14 interface DatabaseException { }