Package org.eclipse.jgit.errors
Class ObjectWritingException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- org.eclipse.jgit.errors.ObjectWritingException
-
- All Implemented Interfaces:
java.io.Serializable
public class ObjectWritingException extends java.io.IOException
Cannot store an object in the object database. 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 long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description ObjectWritingException(java.lang.String s)
Constructs an ObjectWritingException with the specified detail message.ObjectWritingException(java.lang.String s, java.lang.Throwable cause)
Constructs an ObjectWritingException with the specified detail message.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ObjectWritingException
public ObjectWritingException(java.lang.String s)
Constructs an ObjectWritingException with the specified detail message.- Parameters:
s
- message
-
ObjectWritingException
public ObjectWritingException(java.lang.String s, java.lang.Throwable cause)
Constructs an ObjectWritingException with the specified detail message.- Parameters:
s
- messagecause
- root cause exception
-
-