blob: 19dd3b6d4c0aba4d6b4c0faec2f6922881bec6de (
plain)
1
2
3
4
5
6
7
8
|
package except
/**
* 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.")
|