yubo
2025-09-24 35cfaa7259f3d494e7bd03aec5c7e035049ee19b
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);
    }
}