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:
Serializable
An exception to be thrown when the write operation is aborted.
That can be thrown inside
ObjectCountCallback.setObjectCount(long)
.
- Since:
- 4.1
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionConstruct aWriteAbortedException
.Construct aWriteAbortedException
.WriteAbortedException
(String s, Throwable why) Construct aWriteAbortedException
. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
-
Constructor Details
-
WriteAbortedException
public WriteAbortedException()Construct aWriteAbortedException
. -
WriteAbortedException
Construct aWriteAbortedException
.- Parameters:
s
- message describing the issue
-
WriteAbortedException
Construct aWriteAbortedException
.- Parameters:
s
- message describing the issuewhy
- a lower level implementation specific issue.
-