zhuo
2025-03-24 99530da67d18c6876757e3fe9dec185f9a4e7761
1
2
3
4
5
6
7
8
9
package com.ruoyi.framework.exception;
 
public class ErrorException extends RuntimeException{
 
    public ErrorException(String msg){
        super(msg);
    }
 
}