Class DefaultErrorHandler

  • All Implemented Interfaces:
    ErrorHandler

    public class DefaultErrorHandler
    extends java.lang.Object
    implements ErrorHandler
    Handle unrecoverable errors that occur during logging by writing to standard error.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void error​(java.lang.String message, java.lang.Throwable throwable, LogEvent event)
      Log an unrecoverable error.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • DefaultErrorHandler

        public DefaultErrorHandler()
    • Method Detail

      • error

        public void error​(java.lang.String message,
                          java.lang.Throwable throwable,
                          LogEvent event)
        Log an unrecoverable error.
        Specified by:
        error in interface ErrorHandler
        Parameters:
        message - the error message
        throwable - the exception associated with error (may be null)
        event - the LogEvent that caused error, if any (may be null)