Exceptions¶
BaseException
¶
Bases: Exception
The base exception used in the system.
Source code in easy_email/exceptions.py
1 2 3 4 5 6 7 8 | |
InvalidEmailProcessor
¶
Bases: BaseException
raises when user use a wrong email processor
Source code in easy_email/exceptions.py
37 38 | |
InvalidFileFormat
¶
Bases: BaseException
Raised when the specified send time is in the past.
Source code in easy_email/exceptions.py
28 29 30 31 32 33 34 | |
InvalidSendTime
¶
Bases: BaseException
Raised when the specified send time is in the past.
Source code in easy_email/exceptions.py
19 20 21 22 23 24 25 | |
TemplateNotFound
¶
Bases: BaseException
The exception raised when a template is not found.
Source code in easy_email/exceptions.py
11 12 13 14 15 16 | |