Class LoggerRuntimeException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.refcodes.exception.AbstractRuntimeException
org.refcodes.logger.LoggerRuntimeException
All Implemented Interfaces:
Serializable, org.refcodes.exception.ErrorCodeAccessor, org.refcodes.exception.Trap
Direct Known Subclasses:
IllegalRecordRuntimeException, LoggerInstantiationRuntimeException, UnexpectedLogRuntimeException

public abstract class LoggerRuntimeException extends org.refcodes.exception.AbstractRuntimeException
The Class LoggerRuntimeException.
See Also:
  • Constructor Details

    • LoggerRuntimeException

      public LoggerRuntimeException(String aMessage, String aErrorCode)
      Instantiates a new logger runtime exception.
      Parameters:
      aMessage - The aMessage describing this exception.
      aErrorCode - The error code identifying this exception.
    • LoggerRuntimeException

      public LoggerRuntimeException(String aMessage, Throwable aCause, String aErrorCode)
      Instantiates a new logger runtime exception.
      Parameters:
      aMessage - The aMessage describing this exception.
      aCause - The Throwable (Exception) causing this exception.
      aErrorCode - The error code identifying this exception.
    • LoggerRuntimeException

      public LoggerRuntimeException(String aMessage, Throwable aCause)
      Instantiates a new logger runtime exception.
      Parameters:
      aMessage - The aMessage describing this exception.
      aCause - The Throwable (Exception) causing this exception.
    • LoggerRuntimeException

      public LoggerRuntimeException(String aMessage)
      Instantiates a new logger runtime exception.
      Parameters:
      aMessage - The aMessage describing this exception.
    • LoggerRuntimeException

      public LoggerRuntimeException(Throwable aCause, String aErrorCode)
      Instantiates a new logger runtime exception.
      Parameters:
      aCause - The Throwable (Exception) causing this exception.
      aErrorCode - The error code identifying this exception.
    • LoggerRuntimeException

      public LoggerRuntimeException(Throwable aCause)
      Instantiates a new logger runtime exception.
      Parameters:
      aCause - The Throwable (Exception) causing this exception.