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

com.github.keub.maven.plugin.exception.GitException Maven / Gradle / Ivy

Go to download

Copy files from a remote location to a path relative to the project in which the plugin is configured.

There is a newer version: 1.8
Show newest version
/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package com.github.keub.maven.plugin.exception;

/**
 * 

* Exception possibly raised at GIT operations *

*/ public class GitException extends Exception { public GitException(String message) { super(message); } public GitException(String message, Throwable cause) { super(message, cause); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy