Class Interview.Fault
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.sun.interview.Interview.Fault
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
Interview.BadHelpFault, Interview.HelpNotFoundFault, Interview.NotOnPathFault, InterviewParameters.JTIFault, InterviewParameters.TestSuiteFault, InterviewParameters.WorkDirFault, InterviewSet.CycleFault, JavaHelpFactory.BadHelpFault, JavaHelpFactory.HelpNotFoundFault
- Enclosing class:
Interview
This exception is to report problems that occur while updating an interview.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionFault(ResourceBundle i18n, String s) Create a Fault.Fault(ResourceBundle i18n, String s, Object o) Create a Fault.Fault(ResourceBundle i18n, String s, Object... o) 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.s- The key for the detail message.
-
Fault
Create a Fault.- Parameters:
i18n- A resource bundle in which to find the detail message.s- The key for the detail message.o- 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.s- The key for the detail message.o- An array of arguments to be formatted with the detail message byMessageFormat.format(Object[], StringBuffer, FieldPosition)
-