Lius
2024-06-18 419af2767e754ee39aade8f7d5544bb873f4dfb9
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);
    }
 
}