Files
zulip/zerver/webhooks/trello/view/exceptions.py
Tomasz Kolek 7de45951e2 Make webhooks as separate modules with view and tests.
Create python packege for every webhook with view.py and tests.py
2017-01-25 23:14:19 -08:00

12 lines
240 B
Python

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