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

net.jacobpeterson.polygon.rest.exception.PolygonAPIRequestException Maven / Gradle / Ivy

There is a newer version: 9.2.0
Show newest version
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