blob: 2a0624e4051dce7fa5f036995d02baf37e2f8712 (
plain)
1
2
3
4
5
6
|
/**
* The specified domain, which identifies the host's address, could not be resolved.
*
* @param address The unresolvable address.
*/
class UnresolvableHostException(val address: String) : Exception("Hostname $address unresolvable.")
|