Crud & tests for custom commands

This commit is contained in:
stijndcl 2022-06-21 23:58:21 +02:00
parent 53f58eb743
commit fd57b5a79b
11 changed files with 281 additions and 0 deletions

View file

View file

@ -0,0 +1,2 @@
class DuplicateInsertException(Exception):
"""Exception raised when a value already exists"""

View file

@ -0,0 +1,2 @@
class NoResultFoundException(Exception):
"""Exception raised when nothing was found"""