Class FatalErrorMessage

All Implemented Interfaces:
Detail, Serializable

public class FatalErrorMessage extends Message
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 Details

    • FatalErrorMessage

      public FatalErrorMessage(String message)
      Constructs a FatalErrorMessage with 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