Lius
2024-08-23 7c7463d2f5012c27ac50f1d2ac39fa09616fc813
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);
    }
 
}