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

ch.sbb.releasetrain.git.GitException Maven / Gradle / Ivy

There is a newer version: 0.9.6
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements;
 * and to You under the Apache License, Version 2.0.
 */
package ch.sbb.releasetrain.git;

/**
 * Wrapps JGit GitAPIException or IO Exception or a GitRepo specific exception.
 */
public class GitException extends RuntimeException {

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy