qushaowei
2024-01-11 792ff6e14b5074d30f8a7bd804d3b8e6454c3969
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);
    }
 
}