
de.westnordost.osmapi.overpass.OsmTooManyRequestsException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of osmapi-overpass Show documentation
Show all versions of osmapi-overpass Show documentation
Uploads all artifacts belonging to configuration ':archives'
The newest version!
package de.westnordost.osmapi.overpass;
import de.westnordost.osmapi.common.errors.OsmApiException;
/** Thrown when the Overpass quota has been exceeded */
public class OsmTooManyRequestsException extends OsmApiException
{
private static final long serialVersionUID = 1L;
public OsmTooManyRequestsException(Throwable cause)
{
super(cause);
}
public OsmTooManyRequestsException(int errorCode, String errorTitle, String description)
{
super(errorCode, errorTitle, description);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy