feat: add DuplicateError domain exception

This commit is contained in:
Johan Lundberg 2026-02-13 13:14:01 +01:00
parent 627675fff1
commit 6c4ba79eed
No known key found for this signature in database
GPG key ID: A6C152738D03C7D1
2 changed files with 9 additions and 0 deletions

View file

@ -0,0 +1,2 @@
class DuplicateError(Exception):
"""Raised when a create operation violates a uniqueness constraint."""