Lius
2024-04-08 0fe6cc1996a8edfc93f86728da58d2a1894110de
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);
    }
 
}