Lius
2025-03-31 5cd4558fb1a7178653d77e1a982e6f26d06b5db5
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);
    }
 
}