Class InitializeException

All Implemented Interfaces:
Serializable, org.refcodes.exception.ErrorCodeAccessor, org.refcodes.exception.Trap
Direct Known Subclasses:
ConfigureException

public class InitializeException extends LifecycleException
Thrown in case initializing a component caused problems. Usually a method similar to "initialize()" throws such an exception.
See Also:
  • Constructor Details

    • InitializeException

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

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

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

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

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

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