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:
java.io.Serializable
public class DiffInterruptedException extends java.lang.RuntimeException
Thrown when a thread executing a diff is interrupted- Since:
- 4.0
- See Also:
MyersDiff
, Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description DiffInterruptedException()
Indicates that the thread computing a diff was interrupted.DiffInterruptedException(java.lang.String message)
Constructor for DiffInterruptedExceptionDiffInterruptedException(java.lang.String message, java.lang.Throwable cause)
Constructor for DiffInterruptedException
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
DiffInterruptedException
public DiffInterruptedException(java.lang.String message, java.lang.Throwable cause)
Constructor for DiffInterruptedException- Parameters:
message
- error messagecause
- aThrowable
- Since:
- 4.1
-
DiffInterruptedException
public DiffInterruptedException(java.lang.String message)
Constructor for DiffInterruptedException- Parameters:
message
- error message- Since:
- 4.1
-
DiffInterruptedException
public DiffInterruptedException()
Indicates that the thread computing a diff was interrupted.
-
-