MysqliException.php 218 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
class MysqliException extends AbstractDriverException
Benjamin Morel's avatar
Benjamin Morel committed
11 12
{
}