Files
kiri-core/http-server/Exception/AuthException.php
T
2020-08-31 12:38:32 +08:00

27 lines
402 B
PHP

<?php
/**
* Created by PhpStorm.
* User: whwyy
* Date: 2018/5/25 0025
* Time: 10:14
*/
namespace HttpServer\Exception;
use Throwable;
/**
* Class AuthException
* @package Snowflake\Snowflake\Exception
*/
class AuthException extends \Exception
{
public function __construct($message = "", $code = 0, Throwable $previous = NULL)
{
parent::__construct($message, 7000, $previous);
}
}