Lius
2024-12-12 661de5344b6a8929f6f1f20ce91bb82cf520c545
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);
    }
 
}