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/Connection.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/kotlin/Connection.kt') diff --git a/src/main/kotlin/Connection.kt b/src/main/kotlin/Connection.kt index a0923e8..9982e76 100644 --- a/src/main/kotlin/Connection.kt +++ b/src/main/kotlin/Connection.kt @@ -60,7 +60,7 @@ class Connection(transLay: TransportLayer) : ProtocolTranslator { * @return A pair of: (1) a nullable string (which can be: `null` if no error occurred, empty if an error occurred * with no message, or non-empty with the error message) and (2) the optional [InMessage] instance (null if an error * occurred). - * @throws InvalidMessageException if the received message is invalid. + * @throws except.InvalidMessageException if the received message is invalid. * @throws RErrorException if the received message is an R-error message. */ private fun checkedInMessage(reqTag: UShort): InMessage { -- cgit v1.2.3