zenglf
2023-10-25 f2e8dc200f4ec9c1021e908f65e6e1e458c2ef70
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);
    }
 
}