mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2024-12-13 10:21:05 +01:00
14 lines
377 B
Python
14 lines
377 B
Python
class IgnoreTicketException(Exception):
|
|
"""
|
|
Raised when an email message is received from a sender who is marked to be ignored
|
|
"""
|
|
pass
|
|
|
|
|
|
class DeleteIgnoredTicketException(Exception):
|
|
"""
|
|
Raised when an email message is received from a sender who is marked to be ignored
|
|
and the record is tagged to delete the email from the inbox
|
|
"""
|
|
pass
|