Class OMAGServerActivationError
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.odpi.openmetadata.serverchassis.springboot.exception.OMAGServerActivationError
- All Implemented Interfaces:
Serializable
Custom exception definition used for managing known server start-up error scenarios.
The application cannot recover from this error.
- See Also:
-
Constructor Summary
ConstructorDescriptionOMAGServerActivationError
(String errorMessage) Constructs error object by describing the event with message.OMAGServerActivationError
(String errorMessage, Throwable cause) Constructs error object by describing the event with message and providing the original cause of the error. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
OMAGServerActivationError
Constructs error object by describing the event with message.- Parameters:
errorMessage
- text message describing the error
-
OMAGServerActivationError
Constructs error object by describing the event with message and providing the original cause of the error.- Parameters:
errorMessage
- text message describing the errorcause
- the error cause as instance of java.lang.Throwable
-