Query/src/Query/BadDBDriverException.php

27 lines
556 B
PHP
Raw Normal View History

<?php
/**
* Query
*
* Free Query Builder / Database Abstraction Layer
*
* @package Query
* @author Timothy J. Warren
2015-11-10 20:58:32 -05:00
* @copyright Copyright (c) 2012 - 2015
* @link https://github.com/aviat4ion/Query
* @license http://philsturgeon.co.uk/code/dbad-license
*/
// --------------------------------------------------------------------------
namespace Query;
/**
* Generic exception for bad drivers
*
* @package Query
* @subpackage Core
*/
2016-09-07 13:10:03 -04:00
class BadDBDriverException extends \InvalidArgumentException {
}
// End of BadDBDriverException.php