upload
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 1m2s

This commit is contained in:
Jan-Philipp Luithardt
2025-12-03 17:57:30 +01:00
parent ed7bd7d1ed
commit 3ddc6bbc15
50 changed files with 282 additions and 114 deletions

View File

@@ -6,3 +6,4 @@ public class TaskAlreadyExistsException extends RuntimeException {
super(message);
}
}

View File

@@ -0,0 +1,8 @@
package hhn.temp.project.expections;
public class TaskHasNoWorkerException extends RuntimeException {
public TaskHasNoWorkerException(String message) {
super(message);
}
}