<?php<zuojiazi@vip.qq.com> <http://zjzit.cn>
namespace think\db\exception;
use think\exception\DbException;
class BindParamException extends DbException
{
public function __construct($message, $config, $sql, $bind, $code = 10502)
{
$this->setData('Bind Param', $bind);
parent::__construct($message, $config, $sql, $code);
}
}