Add CommandParserDispatcher to dispatch PrimitiveRequest to matching CommandParser #188

Merged
lars.winzer merged 4 commits from feat/command-parser into main 2026-03-15 17:21:08 +01:00
Showing only changes of commit 135e6a5327 - Show all commits
@@ -0,0 +1,9 @@
package ch.unibas.dmi.dbis.cs108.casono.server.network.parser;
/** Exception thrown when the CommandParserDispatcher has no registered handler for the provided
* request */
public class UnknownCommandException extends RuntimeException{
public UnknownCommandException(String message) {
super(message);
}
}