lius
2023-09-01 e85c1425f6152ff82687cdccf04869e57536b5ce
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);
    }
 
}