Lius
2024-12-12 ace4b2924c5af8f8fb080e17aedc2bcbf9474da5
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);
    }
 
}