zhangherong
2025-05-06 7219919060248e78f14e5c9a33cff1a54781cf1c
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);
    }
 
}