cuijian
2025-06-23 f8126ae974ae64230a2e5f29f1247b58849c2ca5
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);
    }
 
}