/*
* Copyright (c) 1995, 2008, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package java.net;
import java.io.IOException;
/**
* Thrown to indicate that there is an error in the underlying
* protocol, such as a TCP error.
*
* @author Chris Warth
* @since JDK1.0
*/
public
class ProtocolException extends IOException {
private static final long serialVersionUID = -6098449442062388080L;
/**
* Constructs a new ProtocolException
with the
* specified detail message.
*
* @param host the detail message.
*/
public ProtocolException(String host) {
super(host);
}
/**
* Constructs a new ProtocolException
with no detail message.
*/
public ProtocolException() {
}
}