8 lines
183 B
Python
Executable File
8 lines
183 B
Python
Executable File
"""Definition of database exception."""
|
|
|
|
from __future__ import annotations
|
|
|
|
|
|
class NoDocumentFoundException(Exception):
|
|
"""Database exception for when no documents are found."""
|