Lius
2024-07-17 d54b8d2372ff5cf685c10c66f094df7d3b91ecbf
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);
    }
 
}