django-helpdeskmig/helpdesk/exceptions.py

14 lines
377 B
Python
Raw Normal View History

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
"""
2022-09-08 23:11:24 +02:00
pass