com.github.tornaia.geoip.GeoIPException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-offline-geoip Show documentation
Show all versions of java-offline-geoip Show documentation
Java Offline GeoIP maps any IP address to its country code
package com.github.tornaia.geoip;
public class GeoIPException extends RuntimeException {
private static final long serialVersionUID = -2363078259040227858L;
public GeoIPException(String message) {
super(message);
}
public GeoIPException(String message, Exception cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy