Class ProtocolException

java.lang.Object
java.lang.Throwable
java.lang.Exception
com.gigaspaces.exception.lrmi.ProtocolException
All Implemented Interfaces:
Serializable

public class ProtocolException extends Exception
A ProtocolException is thrown as a result of a remote method invocation while unmarshalling the arguments to get request/reply packet. A ProtocolException instance contains the original java.lang.Throwable that occurred as its cause.
Since:
5.1
Author:
Igor Goldenberg
See Also:
  • Constructor Details

    • ProtocolException

      public ProtocolException(String s, Throwable ex)
      Constructs a ProtocolException with the specified detail message and nested exception.
      Parameters:
      s - the detail message.
      ex - the nested exception, can't be null.
      Throws:
      IllegalArgumentException - throws if the cause object is null.