yangbin
2025-03-31 e70428eb12c33888fa36b680ad9582c95a50a56f
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);
    }
 
}