
net.jacobpeterson.polygon.rest.exception.PolygonAPIRequestException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alpaca-java Show documentation
Show all versions of alpaca-java Show documentation
Java API for Alpaca and Polygon
package net.jacobpeterson.polygon.rest.exception;
import com.mashape.unirest.http.HttpResponse;
import net.jacobpeterson.abstracts.rest.exception.AbstractAPIRequestException;
import java.io.InputStream;
/**
* The Class PolygonAPIException.
*/
public class PolygonAPIRequestException extends AbstractAPIRequestException {
/**
* Instantiates a new Polygon api request exception.
*
* @param httpResponse the http response
*/
public PolygonAPIRequestException(HttpResponse httpResponse) {
super("Polygon", httpResponse);
}
@Override
protected void parseAPIExceptionMessage() {
super.parseStandardAPIExceptionResponse();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy