ProtocolException

  • ProtocolException signals an error in the underlying protocol, like a TCP error, extending IOException.

  • It provides constructors to create exceptions with or without a detailed message.

  • It inherits methods from Throwable for stack trace and cause analysis, and from Object for basic object operations.

  • Constructors allow specifying a detail message about the protocol error or creating a generic exception without a message.

public class ProtocolException extends IOException

Thrown to indicate that there is an error in the underlying protocol, such as a TCP error.

Public Constructor Summary

ProtocolException(String host)
Constructs a new ProtocolException with the specified detail message.
ProtocolException()
Constructs a new ProtocolException with no detail message.

Inherited Method Summary

Public Constructors

public ProtocolException (String host)

Constructs a new ProtocolException with the specified detail message.

Parameters
host the detail message.

public ProtocolException ()

Constructs a new ProtocolException with no detail message.