mirror of
https://gitee.com/fastadminnet/framework.git
synced 2026-07-02 05:02:48 +08:00
28 lines
887 B
PHP
28 lines
887 B
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2006~2016 http://thinkphp.cn All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
|
|
// +----------------------------------------------------------------------
|
|
// | Author: 麦当苗儿 <zuojiazi@vip.qq.com> <http://zjzit.cn>
|
|
// +----------------------------------------------------------------------
|
|
|
|
namespace think\exception;
|
|
|
|
use think\Exception;
|
|
|
|
/**
|
|
* Database相关异常处理类
|
|
*/
|
|
class NotFoundException extends Exception
|
|
{
|
|
/**
|
|
* 系统异常后发送给客户端的HTTP Status
|
|
* @var integer
|
|
*/
|
|
protected $httpStatus = 404;
|
|
|
|
}
|