Class InvokerException
- java.lang.Object
 - 
- java.lang.Throwable
 - 
- java.lang.Exception
 - 
- com.sun.portal.portletcontainer.invoker.InvokerException
 
 
 
 
- 
- All Implemented Interfaces:
 Serializable
public class InvokerException extends Exception
AInvokerExceptionis thrown when there are errors related to the invocation of portlet's methods.- See Also:
 - Serialized Form
 
 
- 
- 
Constructor Summary
Constructors Constructor Description InvokerException(String msg)Constructs a new exception with the specified messageInvokerException(String msg, Throwable cause)Constructs a new exception with the specified message, and the originalexceptionorerrorInvokerException(Throwable cause)Constructs a new exception with the specified cause 
- 
Method Summary
- 
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
InvokerException
public InvokerException(String msg)
Constructs a new exception with the specified message- Parameters:
 msg- The descriptive message.
 
- 
InvokerException
public InvokerException(String msg, Throwable cause)
Constructs a new exception with the specified message, and the originalexceptionorerror- Parameters:
 msg- The descriptive message.cause- The originalexceptionorerror.
 
- 
InvokerException
public InvokerException(Throwable cause)
Constructs a new exception with the specified cause- Parameters:
 cause- The originalexceptionorerror.
 
 - 
 
 -