Add ProtocolParser to parse RawPacket into PrimitiveRequest using the Tokenizer #187

Merged
lars.winzer merged 6 commits from feat/protocol-parser into main 2026-03-15 16:19:05 +01:00
Showing only changes of commit aa508dfd6c - Show all commits
@@ -0,0 +1,7 @@
package ch.unibas.dmi.dbis.cs108.casono.server.network.parser;
public class ProtocolParserException extends RuntimeException {
public ProtocolParserException(String message) {
super(message);
}
}