Add: Exception thrown while parsing tokens

This commit is contained in:
Lars Simon Winzer
2026-03-15 16:00:00 +01:00
parent 9c3f62db24
commit aa508dfd6c
@@ -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);
}
}