DatabaseExceptionWrapper.php 264 B

123456789101112
  1. <?php
  2. namespace Drupal\Core\Database;
  3. /**
  4. * This wrapper class serves only to provide additional debug information.
  5. *
  6. * This class will always wrap a PDOException.
  7. */
  8. class DatabaseExceptionWrapper extends \RuntimeException implements DatabaseException {
  9. }