qushaowei
2025-05-26 ea42a1e743bf24bbc1648f7ea82ad1812e156eb4
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);
    }
 
}