Files
kiri-core/HttpServer/Exception/AuthException.php
T
2020-12-17 14:12:44 +08:00

35 lines
552 B
PHP

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