SchemaObjectDoesNotExistException.php 395 B

123456789101112
  1. <?php
  2. namespace Drupal\Core\Database;
  3. /**
  4. * Exception thrown if an object being modified doesn't exist yet.
  5. *
  6. * For example, this exception should be thrown whenever there is an attempt to
  7. * modify a database table, field, or index that does not currently exist in
  8. * the database schema.
  9. */
  10. class SchemaObjectDoesNotExistException extends SchemaException implements DatabaseException {}