Lius
2024-07-31 0bd71968ff07a70c421a0f41a642742fedf125bd
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);
    }
 
}