13 lines
135 B
PHP
13 lines
135 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace app\exceptions;
|
||
|
|
|
||
|
|
use think\Exception;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 登录失效异常类
|
||
|
|
*/
|
||
|
|
class NotLoginException extends Exception
|
||
|
|
{
|
||
|
|
}
|