cuijian
2025-06-25 bb47bf3d97d1a68e06a73ce275e81b5e581219d4
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);
    }
 
}