Source of file NotImplementedException.php

Size: 0,579 Bytes - Last Modified: 2020-04-10T20:54:13-04:00

src/Exception/NotImplementedException.php

123456789101112131415161718192021222324
<?php declare(strict_types=1);
/**
 * Query
 *
 * SQL Query Builder / Database Abstraction Layer
 *
 * PHP version 7.4
 *
 * @package     Query
 * @author      Timothy J. Warren <tim@timshomepage.net>
 * @copyright   2012 - 2020 Timothy J. Warren
 * @license     http://www.opensource.org/licenses/mit-license.html  MIT License
 * @link        https://git.timshomepage.net/aviat/Query
 * @version     3.0.0
 */
namespace Query\Exception;

use BadMethodCallException;

/**
 * Exception for non-implemented method
 */
class NotImplementedException extends BadMethodCallException{
}