16 lines
295 B
PHP
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;
|
|
}
|