zss
2025-03-04 c4d2be35ce4c31362b2f9aead4455e6a3c7ad27d
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);
    }
 
}