for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace xiaodi\JWTAuth\Exception;
use think\exception\HttpException;
/**
* 验证异常.
*/
class JWTException extends HttpException
{
public function __construct(string $message, $code = 0)
parent::__construct(401, $message, null, [], $code);
}