DatabaseException.php 424 B

1234567891011121314
  1. <?php
  2. // @codingStandardsIgnoreFile
  3. namespace Drupal\Core\Database;
  4. /**
  5. * Interface for a database exception.
  6. *
  7. * All Database exceptions should implement this interface so that they can be
  8. * caught collectively. Note that this applies only to Drupal-spawned
  9. * exceptions. PDOException will not implement this interface and module
  10. * developers should account for it separately.
  11. */
  12. interface DatabaseException { }