6 lines
147 B
Python
Executable File
6 lines
147 B
Python
Executable File
"""Definition of database exception."""
|
|
|
|
|
|
class NoDocumentFoundException(Exception):
|
|
"""Database exception for when no documents are found."""
|