Class InstantiationRuntimeException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.refcodes.exception.AbstractRuntimeException
org.refcodes.factory.FactoryRuntimeException
org.refcodes.factory.InstantiationRuntimeException
All Implemented Interfaces:
Serializable, org.refcodes.exception.ErrorCodeAccessor, org.refcodes.exception.Trap

public class InstantiationRuntimeException extends FactoryRuntimeException
Thrown in case of a caught runtime exception of an underlying framework which only shows up at runtime (probably not documented in any API).
See Also:
  • Constructor Details

    • InstantiationRuntimeException

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

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

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

      public InstantiationRuntimeException(String aMessage)
      Instantiates a new unexpected factory runtime exception.
      Parameters:
      aMessage - The aMessage describing this exception.
    • InstantiationRuntimeException

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

      public InstantiationRuntimeException(Throwable aCause)
      Instantiates a new unexpected factory runtime exception.
      Parameters:
      aCause - The Throwable (Exception) causing this exception.