- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.eclipse.jgit.api.errors.GitAPIException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
AbortedByHookException,ArchiveCommand.UnsupportedFormatException,CanceledException,CannotDeleteCurrentBranchException,CheckoutConflictException,ConcurrentRefUpdateException,DetachedHeadException,EmptyCommitException,FilterFailedException,InvalidConfigurationException,InvalidMergeHeadsException,InvalidRebaseStepException,InvalidRefNameException,InvalidRemoteException,InvalidTagNameException,MultipleParentsNotAllowedException,NoFilepatternException,NoHeadException,NoMessageException,NotMergedException,PatchApplyException,PatchFormatException,RefAlreadyExistsException,RefNotAdvertisedException,RefNotFoundException,ServiceUnavailableException,StashApplyFailureException,SubmoduleDeinitCommand.NoSuchSubmoduleException,TransportException,UnmergedPathsException,UnsupportedSigningFormatException,WrongObjectTypeException,WrongRepositoryStateException
public abstract class GitAPIException extends Exception
Superclass of all exceptions thrown by the API classes inorg.eclipse.jgit.api- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedGitAPIException(String message)Constructs a new exception with the specified detail message and no cause.protectedGitAPIException(String message, Throwable cause)Constructs a new exception with the specified detail message and cause.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
GitAPIException
protected GitAPIException(String message, Throwable cause)
Constructs a new exception with the specified detail message and cause.- Parameters:
message- detail messagecause- cause- Since:
- 3.1
-
GitAPIException
protected GitAPIException(String message)
Constructs a new exception with the specified detail message and no cause.- Parameters:
message- detail message- Since:
- 3.1
-
-