Package org.eclipse.jgit.errors
Class DiffInterruptedException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.eclipse.jgit.errors.DiffInterruptedException
- All Implemented Interfaces:
Serializable
Thrown when a thread executing a diff is interrupted
- Since:
- 4.0
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionIndicates that the thread computing a diff was interrupted.DiffInterruptedException
(String message) Constructor for DiffInterruptedExceptionDiffInterruptedException
(String message, Throwable cause) Constructor for DiffInterruptedException -
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
-
DiffInterruptedException
Constructor for DiffInterruptedException- Parameters:
message
- error messagecause
- aThrowable
- Since:
- 4.1
-
DiffInterruptedException
Constructor for DiffInterruptedException- Parameters:
message
- error message- Since:
- 4.1
-
DiffInterruptedException
public DiffInterruptedException()Indicates that the thread computing a diff was interrupted.
-