io.ipinfo.api.errors.RateLimitedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ipinfo-api Show documentation
Show all versions of ipinfo-api Show documentation
Java wrapper for the IPinfo API
package io.ipinfo.api.errors;
public class RateLimitedException extends Exception {
public RateLimitedException() {
super("You have been sending too many requests. Visit https://ipinfo.io/account to see your API limits.");
}
}