framework
Class AppError

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by framework.AppError
All Implemented Interfaces:
java.io.Serializable

public class AppError
extends java.lang.Exception

Base class for all application errors.

See Also:
Serialized Form

Constructor Summary
AppError()
          Initializes the error message to "Application Error".
AppError(java.lang.String gripe)
          Initializes the error message.
 
Method Summary
 
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

AppError

public AppError(java.lang.String gripe)
Initializes the error message.

Parameters:
gripe - the error message.

AppError

public AppError()
Initializes the error message to "Application Error".