zhuo
2025-05-07 50164d95bfe34f532e3f2513a53f62c0864fe1a2
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);
    }
 
}