liding
2025-03-28 9b5243a4eb50a6e034620f2fb9b2ffd6fb80820a
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);
    }
 
}