Class InitializeException

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

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

      • InitializeException

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

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

        public InitializeException​(String message,
                                   Throwable cause)
        Instantiates a new initialize exception.
        Parameters:
        message - the message
        cause - the cause
      • InitializeException

        public InitializeException​(String message)
        Instantiates a new initialize exception.
        Parameters:
        message - the message
      • InitializeException

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

        public InitializeException​(Throwable cause)
        Instantiates a new initialize exception.
        Parameters:
        cause - the cause