< prev index next >

src/java.base/share/classes/java/net/UnknownHostException.java

Print this page




  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package java.net;
  27 
  28 import java.io.IOException;
  29 
  30 /**
  31  * Thrown to indicate that the IP address of a host could not be determined.
  32  *
  33  * @author  Jonathan Payne
  34  * @since   1.0
  35  */
  36 public
  37 class UnknownHostException extends IOException {

  38     private static final long serialVersionUID = -4639126076052875403L;
  39 
  40     /**
  41      * Constructs a new {@code UnknownHostException} with the
  42      * specified detail message.
  43      *
  44      * @param   message   the detail message.
  45      */
  46     public UnknownHostException(String message) {
  47         super(message);
  48     }
  49 
  50     /**
  51      * Constructs a new {@code UnknownHostException} with no detail
  52      * message.
  53      */
  54     public UnknownHostException() {
  55     }
  56 }


  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package java.net;
  27 
  28 import java.io.IOException;
  29 
  30 /**
  31  * Thrown to indicate that the IP address of a host could not be determined.
  32  *
  33  * @author  Jonathan Payne
  34  * @since   1.0
  35  */
  36 public
  37 class UnknownHostException extends IOException {
  38     @java.io.Serial
  39     private static final long serialVersionUID = -4639126076052875403L;
  40 
  41     /**
  42      * Constructs a new {@code UnknownHostException} with the
  43      * specified detail message.
  44      *
  45      * @param   message   the detail message.
  46      */
  47     public UnknownHostException(String message) {
  48         super(message);
  49     }
  50 
  51     /**
  52      * Constructs a new {@code UnknownHostException} with no detail
  53      * message.
  54      */
  55     public UnknownHostException() {
  56     }
  57 }
< prev index next >