From 1abae6d1e41659ebe3230352c58e0cf0550f19eb Mon Sep 17 00:00:00 2001 From: Szymon Szukalski Date: Fri, 26 Jul 2024 11:43:56 +1000 Subject: Add test not found handling to /aggregate endpoint --- .../com/stileeducation/markr/exception/TestNotFoundException.java | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/main/java/com/stileeducation/markr/exception/TestNotFoundException.java (limited to 'src/main/java/com/stileeducation/markr/exception') diff --git a/src/main/java/com/stileeducation/markr/exception/TestNotFoundException.java b/src/main/java/com/stileeducation/markr/exception/TestNotFoundException.java new file mode 100644 index 0000000..d4822de --- /dev/null +++ b/src/main/java/com/stileeducation/markr/exception/TestNotFoundException.java @@ -0,0 +1,7 @@ +package com.stileeducation.markr.exception; + +public class TestNotFoundException extends RuntimeException { + public TestNotFoundException(String message) { + super(message); + } +} \ No newline at end of file -- cgit v1.2.3