You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
430 B
16 lines
430 B
<?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 |
|
{ |
|
}
|
|
|