qushaowei
2023-09-21 1f95d9a630f4333710d92b6563a8cceed2b199f4
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);
    }
 
}