com.hp.lft.sdk

Class GeneralReplayException

    • Constructor Summary

      Constructor and Description
      GeneralReplayException(TestObject testObject)
      Constructs a new GeneralReplayException with the test object, on which the replay failed.
      GeneralReplayException(TestObject testObject, int errorCode, java.lang.String message)
      Constructs a new GeneralReplayException with the test object, on which the replay failed and the specified detail message and error code.
      GeneralReplayException(TestObject testObject, java.lang.String message)
      Constructs a new GeneralReplayException with the test object, on which the replay failed and the specified detail message.
    • Method Summary

      Modifier and TypeMethod and Description
      TestObjectgetTestObject()
      Returns the test object, on which the replay failed.
      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • GeneralReplayException

        public GeneralReplayException(TestObject testObject)
        Constructs a new GeneralReplayException with the test object, on which the replay failed.
        Parameters:
        testObject - the test object, on which the replay failed.
      • GeneralReplayException

        public GeneralReplayException(TestObject testObject,
                                      java.lang.String message)
        Constructs a new GeneralReplayException with the test object, on which the replay failed and the specified detail message.
        Parameters:
        testObject - the test object, on which the replay failed.
        message - the detail message.
      • GeneralReplayException

        public GeneralReplayException(TestObject testObject,
                                      int errorCode,
                                      java.lang.String message)
        Constructs a new GeneralReplayException with the test object, on which the replay failed and the specified detail message and error code.
        Parameters:
        testObject - the test object, on which the replay failed.
        errorCode - the error code representing the error that occurred.
        message - the detail message.
    • Method Detail

      • getTestObject

        public TestObject getTestObject()
        Returns the test object, on which the replay failed.
        Returns:
        the test object, on which the replay failed.