zhangherong
2025-05-06 0af9edae246c6aed95e7836f31b5ee4ef0527649
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);
    }
 
}