Lius
2024-07-15 c6e2b2c4a2acbdcc0ba158902caf3c9898bbb740
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);
    }
 
}