com.societegenerale.commons.plugin.service.IllegalChecksConfigurationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of arch-unit-build-plugin-core Show documentation
Show all versions of arch-unit-build-plugin-core Show documentation
The core logic for Maven or Gradle ArchUnit plugin
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));
}
}