mirror of https://github.com/stijndcl/didier
10 lines
298 B
Python
10 lines
298 B
Python
__all__ = ["DuplicateInsertException", "ForbiddenNameException"]
|
|
|
|
|
|
class DuplicateInsertException(Exception):
|
|
"""Exception raised when a value already exists"""
|
|
|
|
|
|
class ForbiddenNameException(Exception):
|
|
"""Exception raised when trying to insert something with a name that isn't allowed"""
|