chenrui
2025-02-26 3ac5195d98526047062d8352a580a98d39813f66
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);
    }
 
}