Lius
2024-12-11 a776be69bcd141d2c85e9cb25174c2959cb2f7aa
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);
    }
 
}