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

de.westnordost.osmapi.overpass.OsmTooManyRequestsException Maven / Gradle / Ivy

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