Files
zulip/zerver/views/webhooks/trello/exceptions.py
Tomasz Kolek f689fbfa4d Replace old Trello integration with a webhook integration.
Fixes: #709.

[With tweaks on the documentation by tabbott]
2016-07-13 21:00:27 -07:00

12 lines
240 B
Python

class TrelloWebhookException(Exception):
pass
class UnsupportedAction(TrelloWebhookException):
pass
class UnknownUpdateCardAction(TrelloWebhookException):
pass
class UnknownUpdateBoardAction(TrelloWebhookException):
pass