Class ProtocolException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
NoDataProtocolException

public class ProtocolException extends SdkException
An Exception derived class which is thrown when an un-expected situation is encountered in the protocol layer code.
Author:
uros.bregar
See Also:
  • Constructor Details

    • ProtocolException

      public ProtocolException(String message)
      Initializes a new instance of the ProtocolException class.
      Parameters:
      message - the detail message (which is saved for later retrieval by the getMessage() method).
    • ProtocolException

      public ProtocolException(Throwable cause)
      Initializes a new instance of the ProtocolException class.
      Parameters:
      cause - the cause (which is saved for later retrieval by the {code getCause()} method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
    • ProtocolException

      public ProtocolException(String message, Throwable cause)
      Initializes a new instance of the ProtocolException class.
      Parameters:
      message - the detail message (which is saved for later retrieval by the getMessage() method).
      cause - the cause (which is saved for later retrieval by the {code getCause()} method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)