“linengliang”
2023-12-21 411d79af7b1b755535fa9a9ee6ed94f682fca09a
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);
    }
 
}