comparison core/lib/Drupal/Core/Database/DatabaseException.php @ 0:4c8ae668cc8c

Initial import (non-working)
author Chris Cannam
date Wed, 29 Nov 2017 16:09:58 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:4c8ae668cc8c
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 { }