Lius
2025-04-07 1f0943282abde9f1044ec2faee8510d0aea1d59e
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);
    }
 
}