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