Package org.pgcodekeeper.core.exception
Class MonitorCancelledRuntimeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.pgcodekeeper.core.exception.MonitorCancelledRuntimeException
- All Implemented Interfaces:
Serializable
Exception indicating that a monitoring operation was cancelled.
Thrown when an ongoing monitoring process is interrupted by user request or system shutdown.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs exception with null message and cause.MonitorCancelledRuntimeException(String message) Constructs exception with specified message.MonitorCancelledRuntimeException(String message, Throwable cause) Constructs exception with specified message and cause.Constructs exception with specified cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
MonitorCancelledRuntimeException
public MonitorCancelledRuntimeException()Constructs exception with null message and cause. -
MonitorCancelledRuntimeException
Constructs exception with specified message and cause.- Parameters:
message- the detail messagecause- the root cause exception
-
MonitorCancelledRuntimeException
Constructs exception with specified message.- Parameters:
message- the detail message
-
MonitorCancelledRuntimeException
Constructs exception with specified cause.- Parameters:
cause- the root cause exception
-