cuijian
2023-11-22 a4e554b7e6c5b98e728f96be80a12b0b04eebd48
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);
    }
 
}