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