yangbin
10 天以前 0c36e85b7267f96c4fe57bc567f44c8c02bfdbac
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);
    }
 
}