fixed package structure with exceptions
this was necessary
This commit is contained in:
parent
ac6a9b822c
commit
c930a75672
8 changed files with 9 additions and 9 deletions
|
@ -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;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package exceptions;
|
||||
package org.texttechnologylab.project.gruppe_05_1.exceptions;
|
||||
|
||||
public class AgendaItemNotFoundException extends RuntimeException {
|
||||
public AgendaItemNotFoundException() {
|
|
@ -1,4 +1,4 @@
|
|||
package exceptions;
|
||||
package org.texttechnologylab.project.gruppe_05_1.exceptions;
|
||||
|
||||
public class FractionAlreadyExistsException extends RuntimeException {
|
||||
public FractionAlreadyExistsException() {
|
|
@ -1,4 +1,4 @@
|
|||
package exceptions;
|
||||
package org.texttechnologylab.project.gruppe_05_1.exceptions;
|
||||
|
||||
public class FractionNotFoundException extends RuntimeException {
|
||||
public FractionNotFoundException() {
|
|
@ -1,4 +1,4 @@
|
|||
package exceptions;
|
||||
package org.texttechnologylab.project.gruppe_05_1.exceptions;
|
||||
|
||||
public class MemberNotFoundException extends RuntimeException {
|
||||
public MemberNotFoundException() {
|
|
@ -1,4 +1,4 @@
|
|||
package exceptions;
|
||||
package org.texttechnologylab.project.gruppe_05_1.exceptions;
|
||||
|
||||
public class ServerErrorException extends RuntimeException {
|
||||
public ServerErrorException() {
|
|
@ -1,4 +1,4 @@
|
|||
package exceptions;
|
||||
package org.texttechnologylab.project.gruppe_05_1.exceptions;
|
||||
|
||||
public class SessionNotFoundException extends RuntimeException {
|
||||
public SessionNotFoundException() {
|
|
@ -1,4 +1,4 @@
|
|||
package exceptions;
|
||||
package org.texttechnologylab.project.gruppe_05_1.exceptions;
|
||||
|
||||
public class SpeechNotFoundException extends RuntimeException {
|
||||
public SpeechNotFoundException() {
|
Loading…
Add table
Add a link
Reference in a new issue