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

16 lines
298 B
PHP

<?php
namespace App\Exceptions;
use Symfony\Component\HttpFoundation\Response;
use Dipper\Foundation\Exceptions\HttpException;
class BeUsedException extends HttpException
{
public $httpStatusCode = Response::HTTP_BAD_REQUEST;
public $message = '已被使用';
public $code = -1;
}