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/ProtocolTranslator.kt | |
parent | aba9d0e6b869eee8e73f9f570394122bca57a1a9 (diff) |
move InvalidMessageException to except package
Diffstat (limited to 'src/main/kotlin/ProtocolTranslator.kt')
-rw-r--r-- | src/main/kotlin/ProtocolTranslator.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/kotlin/ProtocolTranslator.kt b/src/main/kotlin/ProtocolTranslator.kt index f7b114f..686e05e 100644 --- a/src/main/kotlin/ProtocolTranslator.kt +++ b/src/main/kotlin/ProtocolTranslator.kt @@ -27,7 +27,7 @@ interface ProtocolTranslator { * @param msize The maximum length, in bytes, that the client will ever generate or expect to receive in a single * 9P message. * @param version Should be "9P2000", which is the only defined value. - * @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. * @throws MsizeValueTooBigException if the received `msize` value is bigger than what the client requested. * @throws UnknownVersionException if the version negotiation failed. |