gongchunyi
2026-01-14 0744e34cd61cd77dd320bd795c05a48ffe4ea7fc
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);
    }
 
}