Lius
2025-01-22 1a075513907e055a4a5e0affe1f2a2832734de7e
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);
    }
 
}