vd/app/Exceptions/NotExistException.php
2018-11-05 09:26:30 +08:00

16 lines
295 B
PHP

<?php
namespace App\Exceptions;
use Symfony\Component\HttpFoundation\Response;
use Dipper\Foundation\Exceptions\HttpException;
class NotExistException extends HttpException
{
public $httpStatusCode = Response::HTTP_NOT_FOUND;
public $message = '不存在';
public $code = -1;
}