zouyu
2025-08-14 f7a525edfb0b085636837e186c00720e16e4e701
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);
    }
 
}