se.bjurr.violations.main.TooManyViolationsException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of violations-command-line Show documentation
Show all versions of violations-command-line Show documentation
CLI find report files from static code analysis, present and optionally fail.
The newest version!
package se.bjurr.violations.main;
public class TooManyViolationsException extends RuntimeException {
public TooManyViolationsException(final String message) {
super(message);
}
}