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

hudson.plugins.git.GitException Maven / Gradle / Ivy

package hudson.plugins.git;

public class GitException extends RuntimeException {
	private static final long serialVersionUID = 1L;

	public GitException() {
		super();
	}

	public GitException(String message) {
		super(message);
	}

	public GitException(Throwable cause) {
		super(cause);
	}

	public GitException(String message, Throwable cause) {
		super(message, cause);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy