zhangherong
2025-03-17 d284a6ee6d3e7d1b0f273b292de73016a34533c3
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);
    }
 
}