Lius
2025-08-27 c7407795cfa74ab3706a104aa047f209fa5be506
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);
    }
 
}