![JAR search and dependency download from the Maven repository](/logo.png)
com.withabound.resources.base.AboundErrorResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of withabound-java Show documentation
Show all versions of withabound-java Show documentation
The Abound Java SDK provides convenient access to the Abound API from applications written in Java.
The newest version!
package com.withabound.resources.base;
import java.util.Optional;
/** The response body returned from Abound's APIs when the status code is 4xx or 5xx. */
public class AboundErrorResponse {
private String message;
private RequestMetadata request;
public String getMessage() {
return message;
}
public Optional getRequest() {
return Optional.ofNullable(request);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy