新火炬后端单体项目初始化代码
Lius
9 天以前 368e938e3ced045d6b8499cdaed7d61a84180a1c
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);
    }
 
}