Chore: Move RequestParameterAccessor and related files into subfolder of request

This commit is contained in:
Lars Simon Winzer
2026-03-30 17:43:31 +02:00
parent 8b8ac9ccc0
commit f9519a6eb5
4 changed files with 4 additions and 4 deletions
@@ -1,4 +1,4 @@
package ch.unibas.dmi.dbis.cs108.casono.server.network.request; package ch.unibas.dmi.dbis.cs108.casono.server.network.request.accessor;
/** Exception thrown when a required parameter key is not found. */ /** Exception thrown when a required parameter key is not found. */
public class MissingParameterException extends RuntimeException { public class MissingParameterException extends RuntimeException {
@@ -1,4 +1,4 @@
package ch.unibas.dmi.dbis.cs108.casono.server.network.request; package ch.unibas.dmi.dbis.cs108.casono.server.network.request.accessor;
/** Exception thrown when a parameter value cannot be converted to the requested type. */ /** Exception thrown when a parameter value cannot be converted to the requested type. */
public class ParameterParseException extends RuntimeException { public class ParameterParseException extends RuntimeException {
@@ -1,4 +1,4 @@
package ch.unibas.dmi.dbis.cs108.casono.server.network.request; package ch.unibas.dmi.dbis.cs108.casono.server.network.request.accessor;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
@@ -1,4 +1,4 @@
package ch.unibas.dmi.dbis.cs108.casono.server.network.request; package ch.unibas.dmi.dbis.cs108.casono.server.network.request.accessor;
/** /**
* Functional parser interface used to convert a raw string parameter into a target type. * Functional parser interface used to convert a raw string parameter into a target type.