summaryrefslogtreecommitdiff
path: root/vendor/doctrine/dbal/src/Exception/DatabaseObjectExistsException.php
blob: b336015ec328ba6d8bacbd8885c3b4fb7f186d5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php

declare(strict_types=1);

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
{
}