org.springframework.social.partnercenter.api.ApiFault Maven / Gradle / Ivy
package org.springframework.social.partnercenter.api;
import java.util.Map;
public class ApiFault {
private String errorCode;
private String errorMessage;
private Map attributes;
public String getErrorCode() {
return errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public String getErrorMessage() {
return errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public Map getAttributes() {
return attributes;
}
public void setAttributes(Map attributes) {
this.attributes = attributes;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy