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