MysqliException.php 244 Bytes
Newer Older
1 2
<?php

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

5 6
namespace Doctrine\DBAL\Driver\Mysqli;

7
use Doctrine\DBAL\Driver\AbstractDriverException;
8

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