xiaoyong931011
2023-05-06 076f5a4f0a7c5a4d3a6d3a1a61ff96a0091e3320
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);
    }
}