luoyb
2021-06-18 543941f345319f29f92d9be2529d41868bc3cf80
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);
    }
}