qushaowei
2023-10-17 deec8d86a5eee2fc9ec18f6749076ea20b9edc66
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);
    }
 
}