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