diff options
author | Edoardo La Greca | 2025-08-07 20:01:21 +0200 |
---|---|---|
committer | Edoardo La Greca | 2025-08-07 20:01:21 +0200 |
commit | 6f3b6a12d9cebc75ada91fb25a5bab9198a20b07 (patch) | |
tree | b25548e4072c50ab042a240245a78f4c6c36343b /src/main/kotlin/InMessage.kt | |
parent | aba9d0e6b869eee8e73f9f570394122bca57a1a9 (diff) |
move InvalidMessageException to except package
Diffstat (limited to 'src/main/kotlin/InMessage.kt')
-rw-r--r-- | src/main/kotlin/InMessage.kt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/kotlin/InMessage.kt b/src/main/kotlin/InMessage.kt index 03f3428..bf76ef9 100644 --- a/src/main/kotlin/InMessage.kt +++ b/src/main/kotlin/InMessage.kt @@ -1,3 +1,4 @@ +import except.InvalidMessageException import java.math.BigInteger /** @@ -7,7 +8,7 @@ import java.math.BigInteger * @param tl The transport layer API. * @param maxSize The maximum message size negotiated with the remote part. * @param reqTag The required tag. - * @throws InvalidMessageException if the message that is currently being read is invalid. + * @throws except.InvalidMessageException if the message that is currently being read is invalid. */ class InMessage(val tl: TransportLayer, maxSize: UInt, val reqTag: UShort) { /** |