Package com.sun.javatest
Class TestFinder.Fault
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.sun.javatest.TestFinder.Fault
-
- All Implemented Interfaces:
java.io.Serializable
- Enclosing class:
- TestFinder
public static class TestFinder.Fault extends java.lang.Exception
This exception is to report serious problems that occur while finding tests.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Fault(I18NResourceBundle i18n, java.lang.String msgKey)
Create a Fault.Fault(I18NResourceBundle i18n, java.lang.String msgKey, java.lang.Object arg)
Create a Fault.Fault(I18NResourceBundle i18n, java.lang.String msgKey, java.lang.Object[] args)
Create a Fault.
-
-
-
Constructor Detail
-
Fault
public Fault(I18NResourceBundle i18n, java.lang.String msgKey)
Create a Fault.- Parameters:
i18n
- A resource bundle in which to find the detail message.msgKey
- The key for the detail message.
-
Fault
public Fault(I18NResourceBundle i18n, java.lang.String msgKey, java.lang.Object arg)
Create a Fault.- Parameters:
i18n
- A resource bundle in which to find the detail message.msgKey
- The key for the detail message.arg
- An argument to be formatted with the detail message byMessageFormat.format(java.lang.Object[], java.lang.StringBuffer, java.text.FieldPosition)
-
Fault
public Fault(I18NResourceBundle i18n, java.lang.String msgKey, java.lang.Object[] args)
Create a Fault.- Parameters:
i18n
- A resource bundle in which to find the detail message.msgKey
- The key for the detail message.args
- An array of arguments to be formatted with the detail message byMessageFormat.format(java.lang.Object[], java.lang.StringBuffer, java.text.FieldPosition)
-
-