cuijian
2025-06-18 a65937bb7d85168af8256f917aad1aa12c0b8c1d
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);
    }
 
}