cuikaidong
2025-05-27 504333e56f249d16e71e8ac2a435cf2212040c23
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);
    }
 
}