diff options
Diffstat (limited to 'vendor/doctrine/dbal/src/Exception/DatabaseObjectExistsException.php')
-rw-r--r-- | vendor/doctrine/dbal/src/Exception/DatabaseObjectExistsException.php | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/vendor/doctrine/dbal/src/Exception/DatabaseObjectExistsException.php b/vendor/doctrine/dbal/src/Exception/DatabaseObjectExistsException.php new file mode 100644 index 0000000..b336015 --- /dev/null +++ b/vendor/doctrine/dbal/src/Exception/DatabaseObjectExistsException.php | |||
@@ -0,0 +1,18 @@ | |||
1 | <?php | ||
2 | |||
3 | declare(strict_types=1); | ||
4 | |||
5 | namespace Doctrine\DBAL\Exception; | ||
6 | |||
7 | /** | ||
8 | * Base class for all already existing database object related errors detected in the driver. | ||
9 | * | ||
10 | * A database object is considered any asset that can be created in a database | ||
11 | * such as schemas, tables, views, sequences, triggers, constraints, indexes, | ||
12 | * functions, stored procedures etc. | ||
13 | * | ||
14 | * @psalm-immutable | ||
15 | */ | ||
16 | class DatabaseObjectExistsException extends ServerException | ||
17 | { | ||
18 | } | ||