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

cz.jalasoft.lifeconfig.validation.ConfigInterfaceValidationException Maven / Gradle / Ivy

package cz.jalasoft.lifeconfig.validation;

/**
 * A validator of configuration interface that investigates its methods and
 * checks supported annotations.
 *
 * These are the rules of validation:
 *
 * //TODO
 *
 * @author Honza Lastovicka ([email protected])
 * @since 2016-09-23.
 */
public final class ConfigInterfaceValidationException extends RuntimeException {

    public ConfigInterfaceValidationException(String cause, Object... params) {
        super(String.format(cause, params));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy