zenglf
2023-10-10 48f867b3af2718b512b8a4017379d0a318e611c0
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);
    }
 
}