didier/database/exceptions/not_found.py

6 lines
130 B
Python
Raw Normal View History

2022-07-11 22:23:38 +02:00
__all__ = ["NoResultFoundException"]
2022-06-21 23:58:21 +02:00
class NoResultFoundException(Exception):
"""Exception raised when nothing was found"""