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