From 6f3b6a12d9cebc75ada91fb25a5bab9198a20b07 Mon Sep 17 00:00:00 2001 From: Edoardo La Greca Date: Thu, 7 Aug 2025 20:01:21 +0200 Subject: move InvalidMessageException to except package --- src/main/kotlin/InMessage.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/main/kotlin/InMessage.kt') 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) { /** -- cgit v1.2.3