lyh
2025-05-09 58270402a93c8ad2742e00408cf6bbc54c75898c
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);
    }
 
}