Custom exception to handle ignored messages explicitly.

This commit is contained in:
chrisbroderick 2022-09-04 21:53:08 +01:00
parent 3c4c9ce533
commit e1085cb370

5
helpdesk/exceptions.py Normal file
View File

@ -0,0 +1,5 @@
class IgnoreTicketException(Exception):
"""
Raised when an email message is received from a sender who is marked to be ignored
"""
pass