blob: 1d54f77db8d559456cdf0d11fc2b07365d46a6bf [file] [log] [blame]
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 {
private static final long serialVersionUID = 1L;
/**
* @param message
* @param cause
* @since 4.1
*/
public StashApplyFailureException(String message, Throwable cause) {
super(message, cause);
}
/**
* Create a StashApplyFailedException
*
* @param message
*/
public StashApplyFailureException(final String message) {
super(message);
}
}