zhangherong
2025-03-03 13a6603ca30ff2472a31fe02defad2d8ab33533c
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);
    }
 
}