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