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

declare(strict_types=1);

namespace Doctrine\DBAL\Exception;

/**
 * Exception for an unknown table referenced in a statement detected in the driver.
 *
 * @psalm-immutable
 */
class TableNotFoundException extends DatabaseObjectNotFoundException
{
}