Security update for Core, with self-updated composer
[yaffs-website] / web / core / lib / Drupal / Core / Database / SchemaObjectExistsException.php
1 <?php
2
3 namespace Drupal\Core\Database;
4
5 /**
6  * Exception thrown if an object being created already exists.
7  *
8  * For example, this exception should be thrown whenever there is an attempt to
9  * create a new database table, field, or index that already exists in the
10  * database schema.
11  */
12 class SchemaObjectExistsException extends SchemaException implements DatabaseException {}