Package com.sun.interview
Class Interview.Fault
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.sun.interview.Interview.Fault
-
- All Implemented Interfaces:
java.io.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
public static class Interview.Fault extends java.lang.Exception
This exception is to report problems that occur while updating an interview.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Fault(java.util.ResourceBundle i18n, java.lang.String s)
Create a Fault.Fault(java.util.ResourceBundle i18n, java.lang.String s, java.lang.Object o)
Create a Fault.Fault(java.util.ResourceBundle i18n, java.lang.String s, java.lang.Object[] o)
Create a Fault.
-
-
-
Constructor Detail
-
Fault
public Fault(java.util.ResourceBundle i18n, java.lang.String s)
Create a Fault.- Parameters:
i18n
- A resource bundle in which to find the detail message.s
- The key for the detail message.
-
Fault
public Fault(java.util.ResourceBundle i18n, java.lang.String s, java.lang.Object o)
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(java.lang.Object[], java.lang.StringBuffer, java.text.FieldPosition)
-
Fault
public Fault(java.util.ResourceBundle i18n, java.lang.String s, java.lang.Object[] o)
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(java.lang.Object[], java.lang.StringBuffer, java.text.FieldPosition)
-
-