Most visited

Recently visited

Added in API level 1

UnknownHostException

public class UnknownHostException
extends IOException

java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ java.io.IOException
         ↳ java.net.UnknownHostException


Thrown to indicate that the IP address of a host could not be determined.

Summary

Public constructors

UnknownHostException(String host)

Constructs a new UnknownHostException with the specified detail message.

UnknownHostException()

Constructs a new UnknownHostException with no detail message.

Inherited methods

From class java.lang.Throwable
From class java.lang.Object

Public constructors

UnknownHostException

Added in API level 1
UnknownHostException (String host)

Constructs a new UnknownHostException with the specified detail message.

Parameters
host String: the detail message.

UnknownHostException

Added in API level 1
UnknownHostException ()

Constructs a new UnknownHostException with no detail message.

Hooray!