mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-20 15:31:15 -05:00
7 lines
123 B
Python
7 lines
123 B
Python
from sqlalchemy.exc import SQLAlchemyError
|
|
|
|
|
|
# Should I use SQLAlchemyError?
|
|
class DAOException(SQLAlchemyError):
|
|
pass
|