1
0
Files
lkafu/vendor/doctrine/dbal/lib/Doctrine/DBAL/Exception/DatabaseObjectExistsException.php
2020-08-06 14:50:07 +08:00

15 lines
407 B
PHP

<?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.
*/
class DatabaseObjectExistsException extends ServerException
{
}