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

SocketException

public class SocketException extends IOException
Thrown to indicate that there is an error in the underlying protocol, such as a TCP error.
author
Jonathan Payne
version
1.17, 12/19/03
since
JDK1.0

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

param
msg the detail message.

	super(msg);
    
public SocketException()
Constructs a new SocketException with no detail message.

    
Methods Summary