Class InterviewParameters.TestSuiteFault

    • Constructor Summary

      Constructors 
      Constructor Description
      TestSuiteFault​(java.util.ResourceBundle i18n, java.lang.String s)
      Create a fault with an internationalized message.
      TestSuiteFault​(java.util.ResourceBundle i18n, java.lang.String s, java.lang.Object o)
      Create a fault with an internationalized message.
      TestSuiteFault​(java.util.ResourceBundle i18n, java.lang.String s, java.lang.Object[] o)
      Create a fault with an internationalized message.
    • Method Summary

      • 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

      • TestSuiteFault

        public TestSuiteFault​(java.util.ResourceBundle i18n,
                              java.lang.String s)
        Create a fault with an internationalized message.
        Parameters:
        i18n - The bundle from which to get the string.
        s - The key for getting the string to be displayed from the supplied bundle.
      • TestSuiteFault

        public TestSuiteFault​(java.util.ResourceBundle i18n,
                              java.lang.String s,
                              java.lang.Object o)
        Create a fault with an internationalized message.
        Parameters:
        i18n - The bundle from which to get the string.
        s - The key for getting the string to be displayed from the supplied bundle.
        o - Parameter to use when resolving the string from the bundle.
        See Also:
        MessageFormat
      • TestSuiteFault

        public TestSuiteFault​(java.util.ResourceBundle i18n,
                              java.lang.String s,
                              java.lang.Object[] o)
        Create a fault with an internationalized message.
        Parameters:
        i18n - The bundle from which to get the string.
        s - The key for getting the string to be displayed from the supplied bundle.
        o - Parameters to use when resolving the string from the bundle.
        See Also:
        MessageFormat