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