新火炬后端单体项目初始化代码
zhangherong
2025-08-02 a5aa9503efd20103df066219c512b47b7f65e363
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);
    }
 
}