Source of file NonExistentConnectionException.php
Size: 0,578 Bytes - Last Modified: 2018-02-09T16:14:20-05:00
src/Exception/NonExistentConnectionException.php
1234567891011121314151617181920212223 | <?php declare(strict_types=1); /** * Query * * SQL Query Builder / Database Abstraction Layer * * PHP version 7.1 * * @package Query * @author Timothy J. Warren <tim@timshomepage.net> * @copyright 2012 - 2018 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License * @link https://git.timshomepage.net/aviat4ion/Query */ namespace Query\Exception; use InvalidArgumentException; /** * Exception for missing database connection */ class NonExistentConnectionException extends InvalidArgumentException { } |