toolbox.app
Class AppException

Package class diagram package AppException
java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by toolbox.app.AppException
All Implemented Interfaces:
java.io.Serializable

public class AppException
extends java.lang.Exception

Exception that is generated when a exceptions occur using app package classes.

See Also:
Serialized Form

Constructor Summary
AppException(java.lang.Exception ex)
          Creates a new AppException from the given Exception.
AppException(java.lang.String msg)
          Generates a AppException with the given 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

AppException

public AppException(java.lang.Exception ex)
Creates a new AppException from the given Exception.

Parameters:
ex - Underlying exception that occured.

AppException

public AppException(java.lang.String msg)
Generates a AppException with the given message.

Parameters:
msg - String containing the exception message.