zhangherong
2025-04-08 a4f1c76ccacaf7d1e31ef05268c9806bbcb565e9
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);
    }
 
}