zhangherong
2025-07-01 5aae43c2d47e8c7c5ea6457fbb2db99fa9357642
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);
    }
 
}