Lius
2023-12-26 63880904ec802b461089d7a7d0f36db7f0ca881d
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);
    }
 
}