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/ProtocolTranslator.kt | |
parent | 86df6e5f503f6675d39377370276d9f09c0043ef (diff) |
move RErrorException 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 9e5632b..ffa5f44 100644 --- a/src/main/kotlin/ProtocolTranslator.kt +++ b/src/main/kotlin/ProtocolTranslator.kt @@ -28,7 +28,7 @@ interface ProtocolTranslator { * 9P message. * @param version Should be "9P2000", which is the only defined value. * @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. * @throws except.MsizeValueTooBigException if the received `msize` value is bigger than what the client requested. * @throws UnknownVersionException if the version negotiation failed. */ |