lyh
2025-02-17 ce93b6e846a9688db550ed40e6718c0e58d524ec
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);
    }
 
}