“linengliang”
2023-10-17 be5874cff6e319d9f9c7e84cd19f778b8fa3e93b
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);
    }
 
}