Class FatalErrorMessage
java.lang.Object
java.lang.Throwable
java.lang.Exception
br.net.dd.netherwingcore.common.logging.Message
br.net.dd.netherwingcore.common.logging.FatalErrorMessage
- All Implemented Interfaces:
Detail, Serializable
Represents a fatal error message in the system logging framework.
This class is a specialized Message that is always associated with the
logging level Level.FATAL_ERROR. It can be used to represent critical
errors that require immediate attention, such as system crashes or severe issues.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionFatalErrorMessage(String message) Constructs aFatalErrorMessagewith the specified message content. -
Method Summary
Methods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
FatalErrorMessage
Constructs aFatalErrorMessagewith the specified message content.The message content represents the details of the fatal error, and the logging level is automatically set to
Level.FATAL_ERROR.- Parameters:
message- the details of the fatal error message
-