ORG.oclc.jassi
Class FailurePage
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--ORG.oclc.jassi.JavaPageException
|
+--ORG.oclc.jassi.FailurePage
- public class FailurePage
- extends JavaPageException
The FailurePage class is used for throwing exceptions from other classes.
It is intended to maintain a list of failure codes and their associated
textual message.
- See Also:
- Serialized Form
Constructor Summary |
FailurePage()
Constructs a new FailurePage object by setting the code to zero
and the message to an empty string. |
FailurePage(int Code)
Constructs a new FailurePage object by setting the code to the input
parameter and the message to an empty string. |
FailurePage(int Code,
String Msg)
Constructs a new FailurePage object by setting the code and the message
to the input parameter values. |
FailurePage
public FailurePage()
- Constructs a new FailurePage object by setting the code to zero
and the message to an empty string.
- See Also:
WebZErrors
FailurePage
public FailurePage(int Code)
- Constructs a new FailurePage object by setting the code to the input
parameter and the message to an empty string.
- Parameters:
Code
- the error code.- See Also:
WebZErrors
FailurePage
public FailurePage(int Code,
String Msg)
- Constructs a new FailurePage object by setting the code and the message
to the input parameter values.
- Parameters:
Code
- the error code.Msg
- the error message.- See Also:
WebZErrors