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