public class VcsException
extends java.lang.Exception
Constructor and Description |
---|
VcsException()
Default constructor.
|
VcsException(java.lang.String message)
Constructor with a description.
|
VcsException(java.lang.String message,
java.lang.Throwable cause)
Constructor with a description and cause exception.
|
VcsException(java.lang.Throwable cause)
Constructor with cause exception.
|
Modifier and Type | Method and Description |
---|---|
boolean |
isRecoverable()
Indicates whether this error is recoverable (if true then operation can be repeated)
|
void |
setRecoverable(boolean recoverable)
Sets whether this error is recoverable or not (false by default).
|
VcsException |
setRoot(java.lang.Object root)
Deprecated.
core will take care to associate vcs exception and settings
|
public VcsException()
public VcsException(java.lang.String message)
message
- problem description.public VcsException(java.lang.String message, java.lang.Throwable cause)
message
- problem description.cause
- cause exception.public VcsException(java.lang.Throwable cause)
cause
- cause exception.public boolean isRecoverable()
public void setRecoverable(boolean recoverable)
recoverable
- true if error is recoverable@NotNull @Deprecated public VcsException setRoot(@NotNull java.lang.Object root)
root
- deprecated