You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
p62xrbca7/java/net/PortUnreachableException.java

53 lines
860 B

6 years ago
/*
* Copyright (c) 2001, 2013, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package java.net;
/**
* Signals that an ICMP Port Unreachable message has been
* received on a connected datagram.
*
* @since 1.4
*/
public class PortUnreachableException extends SocketException {
private static final long serialVersionUID = 8462541992376507323L;
/**
* Constructs a new {@code PortUnreachableException} with a
* detail message.
* @param msg the detail message
*/
public PortUnreachableException(String msg) {
super(msg);
}
/**
* Construct a new {@code PortUnreachableException} with no
* detailed message.
*/
public PortUnreachableException() {}
}