blob: ea00ea02e9e1318376f7a349491ae5745acbacdc [file] [log] [blame]
package org.apache.gossip.model;
public abstract class Fault extends Response {
private String exception;
public Fault(){}
public String getException() {
return exception;
}
public void setException(String exception) {
this.exception = exception;
}
@Override
public String toString() {
return "Fault [exception=" + exception + "]";
}
}