Module org.cruk.clarity.api
Package org.cruk.clarity.api.automation
Class ClarityAutomationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.cruk.clarity.api.automation.ClarityAutomationException
- All Implemented Interfaces:
Serializable
Runtime exception when there is a failure in automating a Clarity process.
- Since:
- 2.31.2
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionInitialise with no details.ClarityAutomationException(String message) Initialise with an error message.ClarityAutomationException(String message, Throwable cause) Initialise with an error message and a cause.Initialise with a 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
-
ClarityAutomationException
public ClarityAutomationException()Initialise with no details. -
ClarityAutomationException
Initialise with an error message.- Parameters:
message- The error message.
-
ClarityAutomationException
Initialise with a cause.- Parameters:
cause- The original exception causing this exception.
-
ClarityAutomationException
Initialise with an error message and a cause.- Parameters:
message- The error message.cause- The original exception causing this exception.
-