代码格式化

This commit is contained in:
none
2023-04-07 10:03:45 +08:00
parent fc8ff14a24
commit f437b3ad4d
252 changed files with 7467 additions and 5770 deletions

View File

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

View File

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

View File

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

View File

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