cuijian
2025-05-16 90b1114e34be91bcf6e4aa55a9e2b32105059204
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);
    }
 
}