week1/bwie-common/src/main/java/com/bwie/common/exception/AllException.java

26 lines
531 B
Java
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.bwie.common.exception;
/**
* @Authorzhangzhihao
* @nameAllException
* @Date2024/7/23 9:18
* 不准抄代码,添加注释,清楚每一行代码意思
*/
public class AllException extends RuntimeException {
public AllException() {
super();
}
public AllException(String message) {
super(message);
}
public AllException(String message, Throwable cause) {
super(message, cause);
}
public AllException(Throwable cause) {
super(cause);
}
}