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

org.eclipse.jgit.api.errors.StashApplyFailureException Maven / Gradle / Ivy

package org.eclipse.jgit.api.errors;

import org.eclipse.jgit.api.errors.GitAPIException;

/**
 * Thrown from StashApplyCommand when stash apply fails
 */
public class StashApplyFailureException extends GitAPIException {

	/**
	 * Create a StashApplyFailedException
	 *
	 * @param message
	 */
	public StashApplyFailureException(final String message) {
		super(message);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy