From ae98334c5686e9c48774fd014a5d07303ff65229 Mon Sep 17 00:00:00 2001 From: Lars Simon Winzer Date: Wed, 1 Apr 2026 12:46:51 +0200 Subject: [PATCH] Docs: Modify JavaDoc to match changes --- .../protocol/response/dispatcher/ResponseDispatcher.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/ch/unibas/dmi/dbis/cs108/casono/server/network/protocol/response/dispatcher/ResponseDispatcher.java b/src/main/java/ch/unibas/dmi/dbis/cs108/casono/server/network/protocol/response/dispatcher/ResponseDispatcher.java index 3679f89..1895d44 100644 --- a/src/main/java/ch/unibas/dmi/dbis/cs108/casono/server/network/protocol/response/dispatcher/ResponseDispatcher.java +++ b/src/main/java/ch/unibas/dmi/dbis/cs108/casono/server/network/protocol/response/dispatcher/ResponseDispatcher.java @@ -27,8 +27,8 @@ public class ResponseDispatcher { * the target session's response queue. * * @param response the response to dispatch - * @throws InterruptedException if the thread is interrupted while waiting to enqueue the - * primitive response + * @throws ResponseDispatchException wraps any exceptions that occur during dispatching, such as + * the {@link InterruptedException} */ public void dispatch(Response response) { PrimitiveResponse primitiveResponse = ResponseEncoder.encode(response);