Lius
2024-03-01 bd6d24362376534e83ea768c7c4f6b968cc3f7aa
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);
    }
 
}