Package org.eclipse.jgit.errors
Class IndexReadException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
org.eclipse.jgit.errors.IndexReadException
- All Implemented Interfaces:
Serializable
Cannot read the index. This is a serious error that users need to be made
aware of.
- Since:
- 4.2
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionConstructs an IndexReadException with the default message.Constructs an IndexReadException with the specified detail message.IndexReadException
(String s, Throwable cause) Constructs an IndexReadException with the specified detail message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
-
Constructor Details
-
IndexReadException
public IndexReadException()Constructs an IndexReadException with the default message. -
IndexReadException
Constructs an IndexReadException with the specified detail message.- Parameters:
s
- message
-
IndexReadException
Constructs an IndexReadException with the specified detail message.- Parameters:
s
- messagecause
- root cause exception
-