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

fr.ouestfrance.querydsl.postgrest.model.exceptions.MissingConfigurationException Maven / Gradle / Ivy

There is a newer version: 1.4.3
Show newest version
package fr.ouestfrance.querydsl.postgrest.model.exceptions;

/**
 * Exception for missing configuration
 */
public class MissingConfigurationException extends RuntimeException {
    /**
     * Constructor
     * @param clazz misconfigured class
     * @param message cause of misconfiguration
     */
    public MissingConfigurationException(Class clazz, String message) {
        super("Missing configuration for class " + clazz.getName() + " cause :" + message);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy