summaryrefslogtreecommitdiff
path: root/vendor/doctrine/dbal/src/Exception/TableExistsException.php
blob: e469e22c1744c79d4ef4177e1cccf77e8dc459a0 (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 already existing table referenced in a statement detected in the driver.
 *
 * @psalm-immutable
 */
class TableExistsException extends DatabaseObjectExistsException
{
}