Lius
2024-05-16 d4c42dade56ff6c2bd5ca83819f8a8f56430e682
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);
    }
 
}