SOP.wtf/includes/MissingParameter.php

23 lines
310 B
PHP

<?php
/**
*
* This file is part of Aura for PHP.
*
* @license https://opensource.org/licenses/MIT MIT
*
*/
namespace Aura\Sql\Exception;
use Aura\Sql\Exception;
/**
*
* Missing a parameter in the values bound to a statement
*
* @package Aura.Sql
*
*/
class MissingParameter extends Exception
{
}