diff options
author | David Baker <dbkr@matrix.org> | 2014-11-19 18:20:59 +0000 |
---|---|---|
committer | David Baker <dbkr@matrix.org> | 2014-11-19 18:20:59 +0000 |
commit | 74c38797601f6d7d1a02d21fc54ceb1a54629c64 (patch) | |
tree | 153adbc5582198065f6a4b7eb3612f893afa3298 /synapse/api | |
parent | Fix tests from prev commit (diff) | |
download | synapse-74c38797601f6d7d1a02d21fc54ceb1a54629c64.tar.xz |
Start creating a module to do generic notifications (just prints them to stdout currently!)
Diffstat (limited to 'synapse/api')
-rw-r--r-- | synapse/api/errors.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/api/errors.py b/synapse/api/errors.py index 33d15072af..97750ca2b0 100644 --- a/synapse/api/errors.py +++ b/synapse/api/errors.py @@ -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): |