add db
Some checks are pending
Gradle CI with Jacoco / build (push) Has started running

This commit is contained in:
Jan-Philipp Luithardt
2025-12-06 20:08:03 +01:00
parent ec210a629a
commit c775b4ab96
66 changed files with 848 additions and 165 deletions

View File

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