Refactor dispatch method of ResponseDispatcher to be unchecked #223

Merged
lars.winzer merged 5 commits from feat/35-make-dispatch-method-of-responsedispatcher-unchecked into main 2026-04-01 13:04:14 +02:00
Showing only changes of commit 68e8bc76b2 - Show all commits
@@ -0,0 +1,7 @@
package ch.unibas.dmi.dbis.cs108.casono.server.network.protocol.response.dispatcher;
public class ResponseDispatchException extends RuntimeException {
public ResponseDispatchException(String message, Throwable cause) {
super(message, cause);
}
}