zhangherong
2025-07-16 801ca1dee874739c42d215d6eba5e5caf2a45f1d
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);
    }
 
}