Class ConfigurationRuntimeException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.refcodes.exception.AbstractRuntimeException
org.refcodes.properties.ConfigurationRuntimeException
All Implemented Interfaces:
Serializable, org.refcodes.exception.ErrorCodeAccessor, org.refcodes.exception.Trap

public abstract class ConfigurationRuntimeException extends org.refcodes.exception.AbstractRuntimeException
Base exception for the configuration artifact.
See Also:
  • Constructor Details

    • ConfigurationRuntimeException

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

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

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

      public ConfigurationRuntimeException(String aMessage)
      Instantiates a new configuration exception.
      Parameters:
      aMessage - The aMessage describing this exception.
    • ConfigurationRuntimeException

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

      public ConfigurationRuntimeException(Throwable aCause)
      Instantiates a new configuration exception.
      Parameters:
      aCause - The Throwable (Exception) causing this exception.