lyh
2025-01-17 a85eba54097376b0c6ff3ac263c5f1ca11016e3c
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);
    }
 
}