zhuo
2025-04-23 02706a181ee3b8d8d91cd3f747bd697f6b029d6b
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);
    }
 
}