net.kemitix.checkstyle.ruleset.builder.CheckstyleClassNotFoundException Maven / Gradle / Ivy
package net.kemitix.checkstyle.ruleset.builder;
/**
* Raised when a Class to implement a Rule is not found.
*
* @author Paul Campbell ([email protected]).
*/
public class CheckstyleClassNotFoundException extends RuntimeException {
/**
* Constructor.
*
* @param name the name of the unimplemented rule
*/
public CheckstyleClassNotFoundException(final String name) {
super("No class found to implement " + name);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy