KKSU
2024-05-23 a445f71d47923b43532169f158131963e0f550b9
1
2
3
4
5
6
7
8
9
10
11
12
package cc.mrbird.febs.common.exception;
 
public class JPException extends RuntimeException {
 
    public JPException(String message) {
        super(message);
    }
 
    public JPException(String message, Throwable cause) {
        super(message, cause);
    }
}