Lius
2025-08-07 f3a7d211a4a616d8ed2a08b103d8d162f06d389e
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);
    }
 
}