MysqliException.php 241 Bytes
Newer Older
1 2 3 4
<?php

namespace Doctrine\DBAL\Driver\Mysqli;

5
use Doctrine\DBAL\Driver\AbstractDriverException;
6

7
/**
8
 * Exception thrown in case the mysqli driver errors.
9 10
 *
 * @psalm-immutable
11
 */
12
class MysqliException extends AbstractDriverException
Benjamin Morel's avatar
Benjamin Morel committed
13 14
{
}