Restructure server files and folders #212

Merged
lars.winzer merged 16 commits from chore/26-restructure-server-files into main 2026-03-30 18:59:21 +02:00
4 changed files with 4 additions and 4 deletions
Showing only changes of commit f9519a6eb5 - Show all commits
@@ -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.