View Javadoc
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  	 * @param message
14  	 * @param cause
15  	 * @since 4.1
16  	 */
17  	public StashApplyFailureException(String message, Throwable cause) {
18  		super(message, cause);
19  	}
20  
21  	/**
22  	 * Create a StashApplyFailedException
23  	 *
24  	 * @param message
25  	 */
26  	public StashApplyFailureException(final String message) {
27  		super(message);
28  	}
29  
30  }