“linengliang”
2023-09-18 0db15ae012591c51e98b226c274045323af4f58d
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);
    }
 
}