Package org.eclipse.jgit.transport
Class WriteAbortedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- org.eclipse.jgit.transport.WriteAbortedException
-
- All Implemented Interfaces:
java.io.Serializable
public class WriteAbortedException extends java.io.IOExceptionAn exception to be thrown when the write operation is aborted.That can be thrown inside
ObjectCountCallback.setObjectCount(long).- Since:
- 4.1
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static longserialVersionUID
-
Constructor Summary
Constructors Constructor Description WriteAbortedException()Construct aWriteAbortedException.WriteAbortedException(java.lang.String s)Construct aWriteAbortedException.WriteAbortedException(java.lang.String s, java.lang.Throwable why)Construct aWriteAbortedException.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
WriteAbortedException
public WriteAbortedException()
Construct aWriteAbortedException.
-
WriteAbortedException
public WriteAbortedException(java.lang.String s)
Construct aWriteAbortedException.- Parameters:
s- message describing the issue
-
WriteAbortedException
public WriteAbortedException(java.lang.String s, java.lang.Throwable why)Construct aWriteAbortedException.- Parameters:
s- message describing the issuewhy- a lower level implementation specific issue.
-
-