Interface IExceptionLogger


public interface IExceptionLogger
At several places exception might occur that should be reported. For testability these exceptions are emitted against this interface.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final IExceptionLogger
    Default implementation which dumps the stack trace to System.err.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Logs the given exception.
  • Field Details

    • SYSTEM_ERR

      static final IExceptionLogger SYSTEM_ERR
      Default implementation which dumps the stack trace to System.err.
  • Method Details

    • logExeption

      void logExeption(Exception ex)
      Logs the given exception.
      Parameters:
      ex - exception to log