diff options
author | Edoardo La Greca | 2025-08-07 20:07:38 +0200 |
---|---|---|
committer | Edoardo La Greca | 2025-08-07 20:07:38 +0200 |
commit | 9bf06f0575e2552cf6dfebb057e5b799ead4ea9f (patch) | |
tree | 3da73204f13dbb73f8464a545043d039f5fd146c /src/main/kotlin/Connection.kt | |
parent | 86df6e5f503f6675d39377370276d9f09c0043ef (diff) |
move RErrorException to except package
Diffstat (limited to 'src/main/kotlin/Connection.kt')
-rw-r--r-- | src/main/kotlin/Connection.kt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/kotlin/Connection.kt b/src/main/kotlin/Connection.kt index 4f920b7..61cbaae 100644 --- a/src/main/kotlin/Connection.kt +++ b/src/main/kotlin/Connection.kt @@ -1,4 +1,5 @@ import except.MsizeValueTooBigException +import except.RErrorException import java.io.IOException import java.math.BigInteger @@ -62,7 +63,7 @@ class Connection(transLay: TransportLayer) : ProtocolTranslator { * with no message, or non-empty with the error message) and (2) the optional [InMessage] instance (null if an error * occurred). * @throws except.InvalidMessageException if the received message is invalid. - * @throws RErrorException if the received message is an R-error message. + * @throws except.RErrorException if the received message is an R-error message. */ private fun checkedInMessage(reqTag: UShort): InMessage { val imsg = InMessage(this.tl, this.maxSize, reqTag) |