This commit is contained in:
Jan-Philipp Luithardt
2025-12-03 14:19:26 +01:00
parent 62745621f9
commit 835bd912df
36 changed files with 90 additions and 36 deletions

View File

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