ORG.oclc.jassi
Class SuccessPage
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--ORG.oclc.jassi.JavaPageException
|
+--ORG.oclc.jassi.SuccessPage
- public class SuccessPage
- extends JavaPageException
The SuccessPage 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 |
SuccessPage()
Constructs a new SuccessPage object by setting the code to zero
and the message to an empty string. |
SuccessPage(int Code)
Constructs a new SuccessPage object by setting the code to the input
parameter and the message to an empty string. |
SuccessPage(int Code,
String Msg)
Constructs a new SuccessPage object by setting the code and the message
to the input parameter values. |
SuccessPage
public SuccessPage()
- Constructs a new SuccessPage object by setting the code to zero
and the message to an empty string.
- See Also:
WebZErrors
SuccessPage
public SuccessPage(int Code)
- Constructs a new SuccessPage object by setting the code to the input
parameter and the message to an empty string.
- Parameters:
Code
- the error code.- See Also:
WebZErrors
SuccessPage
public SuccessPage(int Code,
String Msg)
- Constructs a new SuccessPage 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