Package org.eclipse.jgit.errors
Class IndexWriteException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- org.eclipse.jgit.errors.IndexWriteException
-
- All Implemented Interfaces:
java.io.Serializable
public class IndexWriteException extends java.io.IOExceptionCannot write a modified index. This is a serious error that users need to be made aware of.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static longserialVersionUID
-
Constructor Summary
Constructors Constructor Description IndexWriteException()Constructs an IndexWriteException with the default message.IndexWriteException(java.lang.String s)Constructs an IndexWriteException with the specified detail message.IndexWriteException(java.lang.String s, java.lang.Throwable cause)Constructs an IndexWriteException with the specified detail message.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
IndexWriteException
public IndexWriteException()
Constructs an IndexWriteException with the default message.
-
IndexWriteException
public IndexWriteException(java.lang.String s)
Constructs an IndexWriteException with the specified detail message.- Parameters:
s- message
-
IndexWriteException
public IndexWriteException(java.lang.String s, java.lang.Throwable cause)Constructs an IndexWriteException with the specified detail message.- Parameters:
s- messagecause- root cause exception
-
-