summaryrefslogtreecommitdiff
path: root/vendor/doctrine/dbal/src/Exception/SyntaxErrorException.php
blob: 595f3b4c01c0c624a9855ceba4def64e5fb31522 (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 a syntax error in a statement detected in the driver.
 *
 * @psalm-immutable
 */
class SyntaxErrorException extends ServerException
{
}