Open SiteSearch 4.1.1
Final

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

Fields inherited from class ORG.oclc.jassi.JavaPageException
code, msg, when
 
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.
 
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

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

Open SiteSearch 4.1.1
Final