jaxcent
Class PageLoadingException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byjaxcent.Jaxception
              extended byjaxcent.PageLoadingException
All Implemented Interfaces:
java.io.Serializable

public class PageLoadingException
extends Jaxception

PageLoadingException is thrown if data retrieval operations are attempted before the page has completed loading.

In browsers, there is a delay between the start of page loading, and before the page has been loaded and HTML elements can be accessed. Jaxcent utilizes this time to initialize the server-side Jaxlet (JaxcentPage-derived) object.

In the constructor, data retrieval is not available because the page loading is not complete. While the page is still loading, output can be sent, and will be processed when the page loading is complete. But no input can retrieved, because the HTML elements are not yet accessible.

Input is available from or after onLoad, and from any event handlers.

See Also:
Serialized Form

Constructor Summary
PageLoadingException()
           
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

PageLoadingException

public PageLoadingException()