zhangherong
2025-06-12 f07a0b2091144e2b1d10a8850ac15e884639a408
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);
    }
 
}