mirror of
https://github.com/PlayEdu/PlayEdu
synced 2025-12-26 20:59:27 +08:00
代码格式化
This commit is contained in:
@@ -1,3 +1,7 @@
|
||||
/**
|
||||
* This file is part of the PlayEdu.
|
||||
* (c) 杭州白书科技有限公司
|
||||
*/
|
||||
package xyz.playedu.api.exception;
|
||||
|
||||
public class JwtLogoutException extends Exception {
|
||||
@@ -17,7 +21,11 @@ public class JwtLogoutException extends Exception {
|
||||
super(cause);
|
||||
}
|
||||
|
||||
protected JwtLogoutException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
|
||||
protected JwtLogoutException(
|
||||
String message,
|
||||
Throwable cause,
|
||||
boolean enableSuppression,
|
||||
boolean writableStackTrace) {
|
||||
super(message, cause, enableSuppression, writableStackTrace);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,12 +1,16 @@
|
||||
/**
|
||||
* This file is part of the PlayEdu.
|
||||
* (c) 杭州白书科技有限公司
|
||||
*/
|
||||
package xyz.playedu.api.exception;
|
||||
|
||||
/**
|
||||
* @Author 杭州白书科技有限公司
|
||||
*
|
||||
* @create 2023/3/10 14:13
|
||||
*/
|
||||
public class LimitException extends Exception {
|
||||
public LimitException() {
|
||||
}
|
||||
public LimitException() {}
|
||||
|
||||
public LimitException(String message) {
|
||||
super(message);
|
||||
@@ -20,7 +24,11 @@ public class LimitException extends Exception {
|
||||
super(cause);
|
||||
}
|
||||
|
||||
public LimitException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
|
||||
public LimitException(
|
||||
String message,
|
||||
Throwable cause,
|
||||
boolean enableSuppression,
|
||||
boolean writableStackTrace) {
|
||||
super(message, cause, enableSuppression, writableStackTrace);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,7 +1,12 @@
|
||||
/**
|
||||
* This file is part of the PlayEdu.
|
||||
* (c) 杭州白书科技有限公司
|
||||
*/
|
||||
package xyz.playedu.api.exception;
|
||||
|
||||
/**
|
||||
* @Author 杭州白书科技有限公司
|
||||
*
|
||||
* @create 2023/2/19 11:04
|
||||
*/
|
||||
public class NotFoundException extends Exception {
|
||||
@@ -21,7 +26,11 @@ public class NotFoundException extends Exception {
|
||||
super(cause);
|
||||
}
|
||||
|
||||
protected NotFoundException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
|
||||
protected NotFoundException(
|
||||
String message,
|
||||
Throwable cause,
|
||||
boolean enableSuppression,
|
||||
boolean writableStackTrace) {
|
||||
super(message, cause, enableSuppression, writableStackTrace);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,8 +1,11 @@
|
||||
/**
|
||||
* This file is part of the PlayEdu.
|
||||
* (c) 杭州白书科技有限公司
|
||||
*/
|
||||
package xyz.playedu.api.exception;
|
||||
|
||||
public class ServiceException extends Exception {
|
||||
public ServiceException() {
|
||||
}
|
||||
public ServiceException() {}
|
||||
|
||||
public ServiceException(String message) {
|
||||
super(message);
|
||||
@@ -16,7 +19,11 @@ public class ServiceException extends Exception {
|
||||
super(cause);
|
||||
}
|
||||
|
||||
public ServiceException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
|
||||
public ServiceException(
|
||||
String message,
|
||||
Throwable cause,
|
||||
boolean enableSuppression,
|
||||
boolean writableStackTrace) {
|
||||
super(message, cause, enableSuppression, writableStackTrace);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user