qushaowei
2024-04-22 a862e80c1ee46a77fc8a2dacf59b0110b3669550
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);
    }
 
}