cuikaidong
2025-05-20 80f4ce8b76ad73f826fff2eed82a7acdebceca04
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);
    }
 
}