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

12345678910111213141516171819
  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. /**
  8. * Create a StashApplyFailedException
  9. *
  10. * @param message
  11. */
  12. public StashApplyFailureException(final String message) {
  13. super(message);
  14. }
  15. }