Class JGitInternalException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.eclipse.jgit.api.errors.JGitInternalException
-
- All Implemented Interfaces:
java.io.Serializable
public class JGitInternalException extends java.lang.RuntimeException
Exception thrown when during command execution a low-level exception from the JGit library is thrown. Also when certain low-level error situations are reported by JGit through return codes this Exception will be thrown.During command execution a lot of exceptions may be thrown. Some of them represent error situations which can be handled specifically by the caller of the command. But a lot of exceptions are so low-level that it is unlikely that the caller of the command can handle them effectively. The huge number of these low-level exceptions which are thrown by the commands lead to a complicated and wide interface of the commands. Callers of the API have to deal with a lot of exceptions they don't understand.
To overcome this situation this class was introduced. Commands will wrap all exceptions they declare as low-level in their context into an instance of this class. Callers of the commands have to deal with one type of low-level exceptions. Callers will always get access to the original exception (if available) by calling
#getCause()
.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description JGitInternalException(java.lang.String message)
Construct an exception for low-level internal exceptionsJGitInternalException(java.lang.String message, java.lang.Throwable cause)
Construct an exception for low-level internal exceptions
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
JGitInternalException
public JGitInternalException(java.lang.String message, java.lang.Throwable cause)
Construct an exception for low-level internal exceptions- Parameters:
message
- error messagecause
- aThrowable
-
JGitInternalException
public JGitInternalException(java.lang.String message)
Construct an exception for low-level internal exceptions- Parameters:
message
- error message
-
-