mirror of
https://github.com/PlayEdu/PlayEdu
synced 2025-12-26 12:49:28 +08:00
登录增加限流控制
This commit is contained in:
26
src/main/java/xyz/playedu/api/exception/LimitException.java
Normal file
26
src/main/java/xyz/playedu/api/exception/LimitException.java
Normal file
@@ -0,0 +1,26 @@
|
||||
package xyz.playedu.api.exception;
|
||||
|
||||
/**
|
||||
* @Author 杭州白书科技有限公司
|
||||
* @create 2023/3/10 14:13
|
||||
*/
|
||||
public class LimitException extends Exception {
|
||||
public LimitException() {
|
||||
}
|
||||
|
||||
public LimitException(String message) {
|
||||
super(message);
|
||||
}
|
||||
|
||||
public LimitException(String message, Throwable cause) {
|
||||
super(message, cause);
|
||||
}
|
||||
|
||||
public LimitException(Throwable cause) {
|
||||
super(cause);
|
||||
}
|
||||
|
||||
public LimitException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
|
||||
super(message, cause, enableSuppression, writableStackTrace);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user