新火炬后端单体项目初始化代码
cuilei
18 小时以前 76c5ad320495758d4e76d852d96914f1b405ece7
1
2
3
4
5
6
7
8
9
package org.jeecg.common.exception;
 
public class ExceptionCast {
 
    public static void cast(String msg) {
        throw new JeecgBootException(msg);
    }
 
}