Add: Exception to be thrown if no matching CommandParser is found

This commit is contained in:
Lars Simon Winzer
2026-03-15 16:53:29 +01:00
parent 4e853cf35f
commit 135e6a5327
@@ -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);
}
}