lyh
2025-06-17 511d8bd98ee50ecf9377c0ac4df25be5d277a03e
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);
    }
 
}