1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- 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);
- }
- }
|