- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- org.eclipse.jgit.errors.IndexReadException
-
- All Implemented Interfaces:
Serializable
public class IndexReadException extends IOException
Cannot read the index. This is a serious error that users need to be made aware of.- Since:
- 4.2
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description IndexReadException()Constructs an IndexReadException with the default message.IndexReadException(String s)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
-
-
-
-
Constructor Detail
-
IndexReadException
public IndexReadException()
Constructs an IndexReadException with the default message.
-
IndexReadException
public IndexReadException(String s)
Constructs an IndexReadException with the specified detail message.- Parameters:
s- message
-
-