summaryrefslogtreecommitdiff
path: root/src/main/kotlin/ProtocolTranslator.kt
diff options
context:
space:
mode:
authorEdoardo La Greca2025-08-07 20:09:15 +0200
committerEdoardo La Greca2025-08-07 20:09:15 +0200
commiteedbc01c3b7f1bfef1ccc341574278e0289879ae (patch)
treecdb8a457e71cc2783fd4e045ed0e6760f1cfcad8 /src/main/kotlin/ProtocolTranslator.kt
parent9bf06f0575e2552cf6dfebb057e5b799ead4ea9f (diff)
move UnknownVersionException to except package
Diffstat (limited to 'src/main/kotlin/ProtocolTranslator.kt')
-rw-r--r--src/main/kotlin/ProtocolTranslator.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/kotlin/ProtocolTranslator.kt b/src/main/kotlin/ProtocolTranslator.kt
index ffa5f44..68dde3e 100644
--- a/src/main/kotlin/ProtocolTranslator.kt
+++ b/src/main/kotlin/ProtocolTranslator.kt
@@ -30,7 +30,7 @@ interface ProtocolTranslator {
* @throws except.InvalidMessageException if the received message is invalid.
* @throws except.RErrorException if the received message is an R-error message.
* @throws except.MsizeValueTooBigException if the received `msize` value is bigger than what the client requested.
- * @throws UnknownVersionException if the version negotiation failed.
+ * @throws except.UnknownVersionException if the version negotiation failed.
*/
fun version(msize: UInt, version: String)