luoyb
2021-02-03 cd54724515df193f7e03537f8dc80e8a24feb7f2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package cc.mrbird.febs.common.core.exception;
 
/**
 * FEBS系统异常
 *
 * @author MrBird
 */
public class FebsException extends Exception {
 
    private static final long serialVersionUID = -6916154462432027437L;
 
    public FebsException(String message) {
        super(message);
    }
}