Class StartException

All Implemented Interfaces:
Serializable, org.refcodes.exception.ErrorCodeAccessor, org.refcodes.exception.Trap

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

    • StartException

      public StartException(String aMessage, String aErrorCode)
      Instantiates a new start exception.
      Parameters:
      aMessage - the message
      aErrorCode - the error code
    • StartException

      public StartException(String aMessage, Throwable aCause, String aErrorCode)
      Instantiates a new start exception.
      Parameters:
      aMessage - the message
      aCause - the cause
      aErrorCode - the error code
    • StartException

      public StartException(String message, Throwable cause)
      Instantiates a new start exception.
      Parameters:
      message - the message
      cause - the cause
    • StartException

      public StartException(String message)
      Instantiates a new start exception.
      Parameters:
      message - the message
    • StartException

      public StartException(Throwable aCause, String aErrorCode)
      Instantiates a new start exception.
      Parameters:
      aCause - the cause
      aErrorCode - the error code
    • StartException

      public StartException(Throwable cause)
      Instantiates a new start exception.
      Parameters:
      cause - the cause