lyh
2025-02-18 fe20260305eaa4c3ffc59ca11d770e2038c18fa9
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);
    }
 
}