“linengliang”
2023-12-28 b17ab31f94fb11f7098e4c91f9b4386b2020f676
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);
    }
 
}