All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.viae.maven.sonar.exceptions.SonarQualityException Maven / Gradle / Ivy

There is a newer version: 1.1.4
Show newest version
/*
 * 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 Exception cause){
        super(cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy