Source of file BadDBDriverException.php

Size: 0,555 Bytes - Last Modified: 2014-08-08T12:03:58-04:00

../src/Query/BadDBDriverException.php

1234567891011121314151617181920212223242526
Covered by 1 test(s):
  • MySQLQBTest::testBadDriver
<?php
/**
 * Query
 *
 * Free Query Builder / Database Abstraction Layer
 *
 * @package		Query
 * @author		Timothy J. Warren
 * @copyright	Copyright (c) 2012 - 2014
 * @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
 */
class BadDBDriverException extends \InvalidArgumentException {}

// End of BadDBDriverException.php