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