Lius
2023-10-30 922d4edc0f8c60b5dfb1d5449f4e8cc1ec19f198
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);
    }
 
}