Class LoggerInstantiationRuntimeException

All Implemented Interfaces:
Serializable, ErrorCodeAccessor, Trap, FilenameAccessor, NamespaceAccessor

public class LoggerInstantiationRuntimeException extends LoggerRuntimeException implements FilenameAccessor, NamespaceAccessor
Thrown in case instantiating a Logger (RuntimeLogger) failed, e.g. the RuntimeLoggerSingleton tries to construct a RuntimeLogger from a bean configuration file (or a SpringRuntimeLoggerSingleton tries to construct a RuntimeLogger from a bean configuration context file) and fails doing so (due to missing or "wrong" configuration file).
See Also:
  • Field Details

    • _namespace

      protected String _namespace
    • _filename

      protected String _filename
  • Constructor Details

    • LoggerInstantiationRuntimeException

      public LoggerInstantiationRuntimeException(String aMessage, String aErrorCode)
      Instantiates a new logger instantiation runtime exception.
      Parameters:
      aMessage - the message
      aErrorCode - the error code
      See Also:
    • LoggerInstantiationRuntimeException

      public LoggerInstantiationRuntimeException(String aMessage, Throwable aCause, String aErrorCode)
      Instantiates a new logger instantiation runtime exception.
      Parameters:
      aMessage - the message
      aCause - the cause
      aErrorCode - the error code
      See Also:
    • LoggerInstantiationRuntimeException

      public LoggerInstantiationRuntimeException(String aMessage, Throwable aCause)
      Instantiates a new logger instantiation runtime exception.
      Parameters:
      aMessage - the message
      aCause - the cause
      See Also:
    • LoggerInstantiationRuntimeException

      public LoggerInstantiationRuntimeException(String aMessage)
      Instantiates a new logger instantiation runtime exception.
      Parameters:
      aMessage - the message
      See Also:
    • LoggerInstantiationRuntimeException

      public LoggerInstantiationRuntimeException(Throwable aCause, String aErrorCode)
      Instantiates a new logger instantiation runtime exception.
      Parameters:
      aCause - the cause
      aErrorCode - the error code
      See Also:
    • LoggerInstantiationRuntimeException

      public LoggerInstantiationRuntimeException(Throwable aCause)
      Instantiates a new logger instantiation runtime exception.
      Parameters:
      aCause - the cause
      See Also:
    • LoggerInstantiationRuntimeException

      public LoggerInstantiationRuntimeException(String aMessage, String aFilename, String aNamespace, String aErrorCode)
      Instantiates a new logger instantiation runtime exception.
      Parameters:
      aMessage - the message
      aFilename - The filename involved in this exception.
      aNamespace - The namespace involved in this exception.
      aErrorCode - the error code
      See Also:
    • LoggerInstantiationRuntimeException

      public LoggerInstantiationRuntimeException(String aMessage, String aFilename, String aNamespace, Throwable aCause, String aErrorCode)
      Instantiates a new logger instantiation runtime exception.
      Parameters:
      aMessage - the message
      aFilename - The filename involved in this exception.
      aNamespace - The namespace involved in this exception.
      aCause - the cause
      aErrorCode - the error code
      See Also:
    • LoggerInstantiationRuntimeException

      public LoggerInstantiationRuntimeException(String aMessage, String aFilename, String aNamespace, Throwable aCause)
      Instantiates a new logger instantiation runtime exception.
      Parameters:
      aMessage - the message
      aFilename - The filename involved in this exception.
      aNamespace - The namespace involved in this exception.
      aCause - the cause
      See Also:
    • LoggerInstantiationRuntimeException

      public LoggerInstantiationRuntimeException(String aMessage, String aFilename, String aNamespace)
      Instantiates a new logger instantiation runtime exception.
      Parameters:
      aMessage - the message
      aFilename - The filename involved in this exception.
      aNamespace - The namespace involved in this exception.
      See Also:
    • LoggerInstantiationRuntimeException

      public LoggerInstantiationRuntimeException(String aFilename, String aNamespace, Throwable aCause, String aErrorCode)
      Instantiates a new logger instantiation runtime exception.
      Parameters:
      aFilename - The filename involved in this exception.
      aNamespace - The namespace involved in this exception.
      aCause - the cause
      aErrorCode - the error code
      See Also:
    • LoggerInstantiationRuntimeException

      public LoggerInstantiationRuntimeException(String aFilename, String aNamespace, Throwable aCause)
      Instantiates a new logger instantiation runtime exception.
      Parameters:
      aFilename - The filename involved in this exception.
      aNamespace - The namespace involved in this exception.
      aCause - the cause
      See Also:
  • Method Details