zenglf
2023-11-10 7972601aa993d1296f198ca16fae73c7988c0177
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);
    }
 
}