houshuai
2025-07-07 c9a3d872c8476060e5877f9fff107ac2ef39e307
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);
    }
 
}