com.viae.maven.sonar.exceptions.SonarQualityException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sonar-maven-plugin Show documentation
Show all versions of sonar-maven-plugin Show documentation
This plugin will make maven interact with SONAR.
/*
* Copyright (c) 2016 by VIAE (http///viae-it.com)
*/
package com.viae.maven.sonar.exceptions;
/**
* Exception that will be thrown when a SONAR quality check fails.
*
* Created by Vandeperre Maarten on 30/04/2016.
*/
public class SonarQualityException extends Exception {
public SonarQualityException(final String errorMessage){
super(errorMessage);
}
public SonarQualityException( final String errorMessage, final Exception cause ) {
super(cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy