Lius
2024-07-25 9b015b51b72ba050b4c38a6ba79eb45b7065e67d
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);
    }
 
}