zenglf
2023-08-19 d2d083528159fe9291a67f51886f98fe646efd95
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);
    }
 
}