diff options
| author | Szymon Szukalski <szymon@skas.io> | 2024-07-26 11:43:56 +1000 |
|---|---|---|
| committer | Szymon Szukalski <szymon@skas.io> | 2024-07-26 11:43:56 +1000 |
| commit | 1abae6d1e41659ebe3230352c58e0cf0550f19eb (patch) | |
| tree | d8a53520348ef4079530db2e23354b3fc04b4814 /src/main/java/com/stileeducation/markr/exception/TestNotFoundException.java | |
| parent | 40fd0f10181909719f2541d62965dbcbc8e91078 (diff) | |
Add test not found handling to /aggregate endpoint
Diffstat (limited to 'src/main/java/com/stileeducation/markr/exception/TestNotFoundException.java')
| -rw-r--r-- | src/main/java/com/stileeducation/markr/exception/TestNotFoundException.java | 7 |
1 files changed, 7 insertions, 0 deletions
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 |
