feat: add custom error for non-existent dataset

This commit is contained in:
2026-03-02 18:59:31 +00:00
parent 18c8539646
commit c9151da643
3 changed files with 10 additions and 3 deletions

View File

@@ -1,2 +1,5 @@
class NotAuthorisedException(Exception):
pass
class NotExistentDatasetException(Exception):
pass