fixed package structure with exceptions

this was necessary
This commit is contained in:
s5260822 2025-03-13 15:31:06 +01:00
parent ac6a9b822c
commit c930a75672
8 changed files with 9 additions and 9 deletions

View file

@ -9,8 +9,8 @@ import com.mongodb.client.MongoClients;
import com.mongodb.client.MongoCollection;
import com.mongodb.client.MongoDatabase;
import com.mongodb.client.model.*;
import exceptions.ServerErrorException;
import exceptions.SessionNotFoundException;
import org.texttechnologylab.project.gruppe_05_1.exceptions.ServerErrorException;
import org.texttechnologylab.project.gruppe_05_1.exceptions.SessionNotFoundException;
import org.bson.Document;
import org.bson.conversions.Bson;
import org.bson.types.ObjectId;

View file

@ -1,4 +1,4 @@
package exceptions;
package org.texttechnologylab.project.gruppe_05_1.exceptions;
public class AgendaItemNotFoundException extends RuntimeException {
public AgendaItemNotFoundException() {

View file

@ -1,4 +1,4 @@
package exceptions;
package org.texttechnologylab.project.gruppe_05_1.exceptions;
public class FractionAlreadyExistsException extends RuntimeException {
public FractionAlreadyExistsException() {

View file

@ -1,4 +1,4 @@
package exceptions;
package org.texttechnologylab.project.gruppe_05_1.exceptions;
public class FractionNotFoundException extends RuntimeException {
public FractionNotFoundException() {

View file

@ -1,4 +1,4 @@
package exceptions;
package org.texttechnologylab.project.gruppe_05_1.exceptions;
public class MemberNotFoundException extends RuntimeException {
public MemberNotFoundException() {

View file

@ -1,4 +1,4 @@
package exceptions;
package org.texttechnologylab.project.gruppe_05_1.exceptions;
public class ServerErrorException extends RuntimeException {
public ServerErrorException() {

View file

@ -1,4 +1,4 @@
package exceptions;
package org.texttechnologylab.project.gruppe_05_1.exceptions;
public class SessionNotFoundException extends RuntimeException {
public SessionNotFoundException() {

View file

@ -1,4 +1,4 @@
package exceptions;
package org.texttechnologylab.project.gruppe_05_1.exceptions;
public class SpeechNotFoundException extends RuntimeException {
public SpeechNotFoundException() {