maven
2025-08-01 4f3a98f19143865cdc1de4791e8a95d96bd40c65
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);
    }
 
}