2
yangbin
2024-08-28 2166c1a14f9629aa49a5f3bb849ce878df4c4892
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);
    }
 
}