diff options
author | Edoardo La Greca | 2025-08-07 20:11:32 +0200 |
---|---|---|
committer | Edoardo La Greca | 2025-08-07 20:11:32 +0200 |
commit | e9d188ba3a53a815a50e8302e6282862406405d7 (patch) | |
tree | 69cb49b32cd5a2da673d1d08caa60bf6d3024e0c /src/main/kotlin/Connection.kt | |
parent | eedbc01c3b7f1bfef1ccc341574278e0289879ae (diff) |
move UnresolvableHostException to except package
Diffstat (limited to 'src/main/kotlin/Connection.kt')
-rw-r--r-- | src/main/kotlin/Connection.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/kotlin/Connection.kt b/src/main/kotlin/Connection.kt index 911cb93..cde7863 100644 --- a/src/main/kotlin/Connection.kt +++ b/src/main/kotlin/Connection.kt @@ -15,7 +15,7 @@ import java.math.BigInteger * * @param transLay The networking API backend of choice. * - * @throws UnresolvableHostException if the host resolution made by [transLay] failed. + * @throws except.UnresolvableHostException if the host resolution made by [transLay] failed. */ class Connection(transLay: TransportLayer) : ProtocolTranslator { /** |