public class MaintenanceException
extends java.lang.Exception
Represents an exception that occurred during the execution of a
MaintenanceOperation
. If the fatal
flag is
set, it means that it is not advisable to try to perform other
maintenance operations (e.g. because of low-level DB failure). If the
flag is false
, it means the maintenance operation failed
for some "higher level" reason, but it managed to clean up after itself
and other operations can be performed.
Constructor and Description |
---|
MaintenanceException(boolean fatal,
java.lang.String msg) |
MaintenanceException(boolean fatal,
java.lang.String msg,
java.lang.Throwable cause) |
Modifier and Type | Method and Description |
---|---|
boolean |
isFatal() |
void |
setFatal(boolean fatal) |