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:
java.io.Serializable
public class IndexReadException extends java.io.IOExceptionCannot read the index. This is a serious error that users need to be made aware of.- Since:
- 4.2
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static longserialVersionUID
-
Constructor Summary
Constructors Constructor Description IndexReadException()Constructs an IndexReadException with the default message.IndexReadException(java.lang.String s)Constructs an IndexReadException with the specified detail message.IndexReadException(java.lang.String s, java.lang.Throwable cause)Constructs an IndexReadException with the specified detail message.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
IndexReadException
public IndexReadException()
Constructs an IndexReadException with the default message.
-
IndexReadException
public IndexReadException(java.lang.String s)
Constructs an IndexReadException with the specified detail message.- Parameters:
s- message
-
IndexReadException
public IndexReadException(java.lang.String s, java.lang.Throwable cause)Constructs an IndexReadException with the specified detail message.- Parameters:
s- messagecause- root cause exception
-
-