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
Superclass of all exceptions thrown by the API classes in
org.eclipse.jgit.api
- See Also:
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
GitAPIException
(String message) Constructs a new exception with the specified detail message and no cause.protected
GitAPIException
(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 Details
-
GitAPIException
Constructs a new exception with the specified detail message and cause.- Parameters:
message
- detail messagecause
- cause- Since:
- 3.1
-
GitAPIException
Constructs a new exception with the specified detail message and no cause.- Parameters:
message
- detail message- Since:
- 3.1
-