public class InvokeException
extends java.lang.Exception
invoke call. This exception is thrown by
Invokable methods and aggregated in an invoke result object, returned by NamedCache.invoke(java.lang.Class<? extends com.scaleoutsoftware.soss.client.Invokable<O, P, R>>, com.scaleoutsoftware.soss.client.NamedCacheFilter, P, com.scaleoutsoftware.soss.client.TimeSpan). A
calling host can use InvokeResult.getErrors() to access a list of exceptions thrown on all hosts.| Constructor and Description |
|---|
InvokeException()
Constructs an
InvokeException. |
InvokeException(java.lang.String message)
Constructs an
InvokeException with a message. |
InvokeException(java.lang.String message,
java.lang.Throwable cause)
Constructs an
InvokeException with a message and cause. |
InvokeException(java.lang.Throwable cause)
Constructs an
InvokeException with a cause. |
public InvokeException(java.lang.String message,
java.lang.Throwable cause)
InvokeException with a message and cause.message - message in the exceptioncause - cause of the exceptionpublic InvokeException(java.lang.String message)
InvokeException with a message.message - message in the exceptionpublic InvokeException(java.lang.Throwable cause)
InvokeException with a cause.cause - cause of the exceptionpublic InvokeException()
InvokeException.