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

com.viae.maven.sonar.exceptions.GitException 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 to be thrown when something goes wrong when handling git processes.
 *
 * Created by Vandeperre Maarten on 05/05/2016.
 */
public class GitException  extends Exception {
    private static final String GIT_ERROR_MESSAGE = "Something went wrong while executing GIT command, verify that git is installed properly on the system";

    public GitException(final Exception cause){
        super(GIT_ERROR_MESSAGE, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy