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

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

package com.maxmind.db;

/**
 * Signals that no annotated constructor was found. You should annotate a
 * constructor in the class with the MaxMindDbConstructor annotation.
 */
public class ConstructorNotFoundException extends RuntimeException {
    private static final long serialVersionUID = 1L;

    ConstructorNotFoundException(String message) {
        super(message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy