lyh
2025-08-18 f1e4e1427bf35e7d1cb3e0b580cf9995a472f214
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);
    }
 
}