RequestParameterAccessor to allow simple access to Parameters in PrimitiveRequest #208

Merged
lars.winzer merged 7 commits from feat/21-requestparameteraccessor into main 2026-03-30 13:22:38 +02:00
Showing only changes of commit ed91494129 - Show all commits
@@ -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);
}
}