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 535B

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