Lius
2024-07-10 bcfdb7a0cd8b207530217ee98383fcbd9d3eccf3
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);
    }
 
}