Add CommandParserDispatcher to dispatch PrimitiveRequest to matching CommandParser #188
+9
@@ -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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user