blob: 25d7e4d474ce4ccf3b55d00f20d38813dd49b3da [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;
/**
* Create a StashApplyFailedException
*
* @param message
*/
public StashApplyFailureException(final String message) {
super(message);
}
}