zss
2025-04-17 8d87f13ab4c7539b4f5d0c5ce0ada6838993a2fb
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);
    }
 
}