mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
63 lines
1.6 KiB
PHP
63 lines
1.6 KiB
PHP
<?php
|
||
|
||
// +----------------------------------------------------------------------
|
||
// | Library for ThinkAdmin
|
||
// +----------------------------------------------------------------------
|
||
// | 版权所有 2014~2020 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
||
// +----------------------------------------------------------------------
|
||
// | 官方网站: https://gitee.com/zoujingli/ThinkLibrary
|
||
// +----------------------------------------------------------------------
|
||
// | 开源协议 ( https://mit-license.org )
|
||
// +----------------------------------------------------------------------
|
||
// | gitee 仓库地址 :https://gitee.com/zoujingli/ThinkLibrary
|
||
// | github 仓库地址 :https://github.com/zoujingli/ThinkLibrary
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace think\admin;
|
||
|
||
/**
|
||
* 自定义数据异常
|
||
* Class Exception
|
||
* @package think\admin
|
||
*/
|
||
class Exception extends \Exception
|
||
{
|
||
/**
|
||
* 异常数据对象
|
||
* @var mixed
|
||
*/
|
||
protected $data = [];
|
||
|
||
/**
|
||
* Exception constructor.
|
||
* @param string $message
|
||
* @param integer $code
|
||
* @param mixed $data
|
||
*/
|
||
public function __construct($message = "", $code = 0, $data = [])
|
||
{
|
||
$this->data = $data;
|
||
$this->code = $code;
|
||
$this->message = $message;
|
||
parent::__construct($message, $code);
|
||
}
|
||
|
||
/**
|
||
* 设置异常停止数据
|
||
* @param mixed $data
|
||
*/
|
||
public function setData($data)
|
||
{
|
||
$this->data = $data;
|
||
}
|
||
|
||
/**
|
||
* 获取异常停止数据
|
||
* @return mixed
|
||
*/
|
||
public function getData()
|
||
{
|
||
return $this->data;
|
||
}
|
||
|
||
} |