InterruptException.java
341 Bytes
package com.ruoyi.exception;
import lombok.Data;
/**
* @author liujun
* @date 2024年07月25日 15:22
*/
@Data
public class InterruptException extends RuntimeException {
private String code;
private String message;
public InterruptException(String message) {
super(message);
this.message = message;
}
}