You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

StashApplyFailureException.java 428B

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