Add: Exception to throw when error during parsing occurs

This commit is contained in:
Lars Simon Winzer
2026-03-30 12:38:44 +02:00
parent db9ea45530
commit ed91494129
@@ -0,0 +1,7 @@
package ch.unibas.dmi.dbis.cs108.casono.server.network.parser;
public class ParameterParseException extends RuntimeException {
public ParameterParseException(String message, Throwable cause) {
super(message, cause);
}
}