mirror of
https://github.com/zoe-may/TDoG-Skin.git
synced 2024-11-24 22:02:22 +08:00
17 lines
430 B
PHP
Executable File
17 lines
430 B
PHP
Executable File
<?php
|
|
|
|
namespace Doctrine\DBAL\Exception;
|
|
|
|
/**
|
|
* Base class for all already existing database object related errors detected in the driver.
|
|
*
|
|
* A database object is considered any asset that can be created in a database
|
|
* such as schemas, tables, views, sequences, triggers, constraints, indexes,
|
|
* functions, stored procedures etc.
|
|
*
|
|
* @psalm-immutable
|
|
*/
|
|
class DatabaseObjectExistsException extends ServerException
|
|
{
|
|
}
|