""" Errors used by the Discussion API. """fromdjango.core.exceptionsimportObjectDoesNotExistclassDiscussionDisabledError(ObjectDoesNotExist):""" Discussion is disabled. """passclassThreadNotFoundError(ObjectDoesNotExist):""" Thread was not found. """passclassCommentNotFoundError(ObjectDoesNotExist):""" Comment was not found. """pass