// +---------------------------------------------------------------------- namespace think\exception; use think\exception\DbException; /** * PDO参数绑定异常 */ class DbBindParamException extends DbException { public function __construct($message, $config, $sql, $bind, $code = 10502) { $this->setData('Bind Param', $bind); parent::__construct($message, $config, $sql, $code); } }