16 lines
240 B
PHP
16 lines
240 B
PHP
|
<?php
|
||
|
/**
|
||
|
* @desc JwtRefreshTokenExpiredException
|
||
|
* @author Tinywan(ShaoBo Wan)
|
||
|
* @date 2022/2/21 9:53
|
||
|
*/
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace Tinywan\Jwt\Exception;
|
||
|
|
||
|
|
||
|
class JwtRefreshTokenExpiredException extends \RuntimeException
|
||
|
{
|
||
|
}
|