qushaowei
2024-01-11 0581d9986b4d14cdf8a6f66a929674224dd45b2f
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);
    }
 
}