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
AInvokerException
is 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 originalexception
orerror
InvokerException(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 originalexception
orerror
- Parameters:
msg
- The descriptive message.cause
- The originalexception
orerror
.
-
InvokerException
public InvokerException(Throwable cause)
Constructs a new exception with the specified cause- Parameters:
cause
- The originalexception
orerror
.
-
-