Lius
2025-03-03 a3ca445facfebbe65d7133928eae1f9662451f6f
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);
    }
 
}