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

com.societegenerale.commons.plugin.service.IllegalChecksConfigurationException Maven / Gradle / Ivy

There is a newer version: 4.0.1
Show newest version
package com.societegenerale.commons.plugin.service;

import java.util.Set;

class IllegalChecksConfigurationException extends RuntimeException {
    IllegalChecksConfigurationException(Class rulesLocation, Set illegalChecks) {
        super(String.format("The following configured checks are not present within %s: %s", rulesLocation.getName(), illegalChecks));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy