lius
2023-09-20 bfdb9c7520a940a9d229b3e6cdcb827cc71b96fc
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);
    }
 
}