FileDocCategorySizeDatePackage
ProtocolException.javaAPI DocJava SE 5 API836Fri Aug 26 14:57:08 BST 2005java.net

ProtocolException

public class ProtocolException extends IOException
Thrown to indicate that there is an error in the underlying protocol, such as a TCP error.
author
Chris Warth
version
1.16, 12/19/03
since
JDK1.0

Fields Summary
Constructors Summary
public ProtocolException(String host)
Constructs a new ProtocolException with the specified detail message.

param
host the detail message.

	super(host);
    
public ProtocolException()
Constructs a new ProtocolException with no detail message.

    
Methods Summary