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