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

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

package com.maxmind.db;

import java.io.IOException;

/**
 * Signals that the underlying database has been closed.
 */
public class ClosedDatabaseException extends IOException {

    private static final long serialVersionUID = 1L;

    ClosedDatabaseException() {
        super("The MaxMind DB has been closed.");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy