Class TestFinder.Fault
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.sun.javatest.TestFinder.Fault
- All Implemented Interfaces:
Serializable
- Enclosing class:
TestFinder
This exception is to report serious problems that occur while
finding tests.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionFault(I18NResourceBundle i18n, String msgKey) Create a Fault.Fault(I18NResourceBundle i18n, String msgKey, Object arg) Create a Fault.Fault(I18NResourceBundle i18n, String msgKey, Object... args) Create a Fault. -
Method Summary
Methods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
Fault
Create a Fault.- Parameters:
i18n- A resource bundle in which to find the detail message.msgKey- The key for the detail message.
-
Fault
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(Object[], StringBuffer, FieldPosition)
-
Fault
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(Object[], StringBuffer, FieldPosition)
-