lius
2023-09-19 0433153f8c4f7bbbaa135ef4c5b729566a58e01a
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);
    }
 
}