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

com.maxmind.db.InvalidNetworkException Maven / Gradle / Ivy

package com.maxmind.db;

import java.net.InetAddress;

public class InvalidNetworkException extends Exception {
    public InvalidNetworkException(InetAddress ip) {
        super("you attempted to use an IPv6 network in an IPv4-only database: " + ip.toString());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy