qushaowei
2023-11-21 f1ec60de737efb5108c177e1618573be2a53f51f
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);
    }
 
}