Query/src/Query/BadDBDriverException.php

26 lines
591 B
PHP
Raw Normal View History

2016-10-12 22:12:25 -04:00
<?php declare(strict_types=1);
/**
* Query
*
2016-09-07 13:17:17 -04:00
* SQL Query Builder / Database Abstraction Layer
*
2018-01-19 13:43:19 -05:00
* PHP version 7.1
2016-09-07 13:17:17 -04:00
*
* @package Query
* @author Timothy J. Warren <tim@timshomepage.net>
2018-01-19 13:43:19 -05:00
* @copyright 2012 - 2018 Timothy J. Warren
2016-09-07 13:17:17 -04:00
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link https://git.timshomepage.net/aviat4ion/Query
*/
namespace Query;
2016-10-12 20:32:23 -04:00
use InvalidArgumentException;
/**
* Generic exception for bad drivers
*
* @package Query
* @subpackage Core
*/
2016-10-12 20:32:23 -04:00
class BadDBDriverException extends InvalidArgumentException {
2016-10-13 21:55:23 -04:00
}