zenglf
2023-10-25 809f2703ce14d4c76eee5a998aeca064a340780a
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);
    }
 
}