Lius
2024-01-27 3519b2bf0f97d5017f97447b6eafc2b4bd9487c4
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);
    }
 
}