Start creating a module to do generic notifications (just prints them to stdout currently!)

This commit is contained in:
David Baker 2014-11-19 18:20:59 +00:00
parent 493055731e
commit 74c3879760
12 changed files with 449 additions and 3 deletions

View file

@ -32,6 +32,7 @@ class Codes(object):
LIMIT_EXCEEDED = "M_LIMIT_EXCEEDED"
CAPTCHA_NEEDED = "M_CAPTCHA_NEEDED"
CAPTCHA_INVALID = "M_CAPTCHA_INVALID"
MISSING_PARAM = "M_MISSING_PARAM"
class CodeMessageException(Exception):