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

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

package com.maxmind.db;

/**
 * Signals that no annotated parameter was found. You should annotate
 * parameters of the constructor class with the MaxMindDbParameter annotation.
 */
public class ParameterNotFoundException extends RuntimeException {
    private static final long serialVersionUID = 1L;

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy