您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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