zhuo
2025-03-21 0e10b1184b1d34de1cf9f372fee3f1abb2291eb7
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);
    }
 
}