zhangherong
2025-03-25 f4672007d5c668e59576ee1e2da9bb9f6a9b3b96
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);
    }
 
}