TableNotFoundException.php 257 Bytes
Newer Older
1 2
<?php

Michael Moravec's avatar
Michael Moravec committed
3 4
declare(strict_types=1);

5 6 7
namespace Doctrine\DBAL\Exception;

/**
8
 * Exception for an unknown table referenced in a statement detected in the driver.
9 10
 *
 * @psalm-immutable
11
 */
12
class TableNotFoundException extends DatabaseObjectNotFoundException
13 14
{
}