Houjie
2025-05-23 c5daf9399f292e5b21deff9d5a8ac60fb4c377ab
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);
    }
 
}