“linengliang”
2023-09-05 09aa0d2eebbdf7d0a584323babc02c4608ab852a
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);
    }
 
}