yangbin
2025-04-16 ddc0f14384619b9618f26a3f363f679833a68b3d
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);
    }
 
}