登录增加限流控制

This commit is contained in:
none
2023-03-10 14:24:36 +08:00
parent f9dec16760
commit 81870bd802
7 changed files with 88 additions and 5 deletions

View 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);
}
}