WAC/email/exceptions.py

6 lines
172 B
Python
Raw Permalink Normal View History

class EmailFailedException(Exception):
def __init__(self, message='Unable to send email', errors=None):
super().__init__(message)
self.errors = errors