toolbox.services
Class InvokeException

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

public class InvokeException
extends java.lang.Exception

Exception that is generated when a exceptions are encountered during interceptor method invocations.

See Also:
Serialized Form

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

InvokeException

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

Parameters:
ex - Underlying exception that occured.

InvokeException

public InvokeException(java.lang.String msg)
Generates an InvokeException with the given message.

Parameters:
msg - String containing the exception message.