zouyu
2025-12-30 004ee58feda41620f621db1fb8773f1b56eaf71e
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);
    }
 
}