All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.gitee.l0km.xthrift.mq.exception.ResponseException Maven / Gradle / Ivy

The newest version!
package com.gitee.l0km.xthrift.mq.exception;

/**
 * @author guyadong
 * @since 1.5.0
 *
 */
public final class ResponseException{
	String message;
	String causeClass;
	String serviceStackTraceMessage;

	String causeFields;
	Integer type;
	public ResponseException() {
	}
	public String getMessage() {
		return message;
	}
	public void setMessage(String message) {
		this.message = message;
	}
	public String getCauseClass() {
		return causeClass;
	}
	public void setCauseClass(String causeClass) {
		this.causeClass = causeClass;
	}
	public String getServiceStackTraceMessage() {
		return serviceStackTraceMessage;
	}
	public void setServiceStackTraceMessage(String serviceStackTraceMessage) {
		this.serviceStackTraceMessage = serviceStackTraceMessage;
	}
	public String getCauseFields() {
		return causeFields;
	}
	public void setCauseFields(String causeFields) {
		this.causeFields = causeFields;
	}
	public Integer getType() {
		return type;
	}
	public void setType(Integer type) {
		this.type = type;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy