SchemaObjectExistsException.php 379 B

123456789101112
  1. <?php
  2. namespace Drupal\Core\Database;
  3. /**
  4. * Exception thrown if an object being created already exists.
  5. *
  6. * For example, this exception should be thrown whenever there is an attempt to
  7. * create a new database table, field, or index that already exists in the
  8. * database schema.
  9. */
  10. class SchemaObjectExistsException extends SchemaException implements DatabaseException {}