xiaoyong931011
2023-01-06 f07c7f23ede5e6cc3c2dae4715a3f0ccf879cbc8
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);
    }
}