Open SiteSearch 4.1.1
Final

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

Fields inherited from class ORG.oclc.jassi.JavaPageException
code, msg, when
 
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.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

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

Open SiteSearch 4.1.1
Final