Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

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. }