Lius
2024-04-18 7b7eb31cb6b8a4594d09c1fa45dc96eb03c5e34f
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);
    }
 
}