Lius
2025-05-15 0d0c698839c739f6ed001835a521b899c7ff0cec
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);
    }
 
}