summaryrefslogtreecommitdiff
path: root/vendor/doctrine/dbal/src/Exception/DatabaseObjectNotFoundException.php
blob: d12dfffad306df60edcbfc7ec5d2f49d24880c0a (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 unknown 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 DatabaseObjectNotFoundException extends ServerException
{
}