“linengliang”
2024-01-11 e8ec78cb398d18f484a9de6af590875875fd40a7
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);
    }
 
}