zhuo
2025-05-20 61f34419e094f2363276d614a960b379cc456482
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);
    }
 
}