mirror of
https://github.com/stijndcl/didier.git
synced 2026-06-04 05:16:16 +02:00
9 lines
298 B
Python
9 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"""
|