1 package org.eclipse.jgit.api.errors;
2
3 import org.eclipse.jgit.api.errors.GitAPIException;
4
5 /**
6 * Thrown from StashApplyCommand when stash apply fails
7 */
8 public class StashApplyFailureException extends GitAPIException {
9
10 private static final long serialVersionUID = 1L;
11
12 /**
13 * Create a StashApplyFailedException
14 *
15 * @param message
16 */
17 public StashApplyFailureException(final String message) {
18 super(message);
19 }
20
21 }