Lius
2024-05-09 efc5dece153d8e51f9e18e136a35558c4ae8a894
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);
    }
 
}