zenglf
2023-09-28 1a9153391a21cc6c5cccb930024b13bd8fa0c6ed
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);
    }
 
}