com.sgoertzen.sonarbreak.SonarBreakException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sonar-break-maven-plugin Show documentation
Show all versions of sonar-break-maven-plugin Show documentation
A maven plugin that will fail a maven build if sonar finds errors with your project.
package com.sgoertzen.sonarbreak;
public class SonarBreakException extends Exception {
public SonarBreakException(String s){
super(s);
}
public SonarBreakException(String s, Throwable t){
super(s, t);
}
}