ajax.common
Class AjaxException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--ajax.common.AjaxException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
AjaxTypeException, CatalogException, ExpressionException, SchedulerException

public class AjaxException
extends java.lang.Exception

The generic AJAX exception. Exceptions are thrown when either the user does something wrong (like create a relation of the same name twice) or an internal error occurs (running out of buffer space) which can be handled by some other part of the system.

See Also:
Serialized Form

Constructor Summary
AjaxException()
          Constructs an AjaxException with no detail message.
AjaxException(java.lang.String s)
          Constructs a DiscoException with a detail message.
 
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

AjaxException

public AjaxException()
Constructs an AjaxException with no detail message. A detail message is a String that describes this particular exception.

AjaxException

public AjaxException(java.lang.String s)
Constructs a DiscoException with a detail message. A detail message is a String that describes this particular exception.
Parameters:
s - the String that contains a detailed message