zhangherong
2025-06-17 0ecd8b8c158436b23298b66b64eaef0438b6425b
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);
    }
 
}