lyh
2025-07-09 154cb8066d8fe14e7549d2ada68f905c3be39a9e
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);
    }
 
}