summary refs log tree commit diff
path: root/synapse/api/errors.py
diff options
context:
space:
mode:
authorDavid Baker <dbkr@matrix.org>2014-11-19 18:20:59 +0000
committerDavid Baker <dbkr@matrix.org>2014-11-19 18:20:59 +0000
commit74c38797601f6d7d1a02d21fc54ceb1a54629c64 (patch)
tree153adbc5582198065f6a4b7eb3612f893afa3298 /synapse/api/errors.py
parentFix tests from prev commit (diff)
downloadsynapse-74c38797601f6d7d1a02d21fc54ceb1a54629c64.tar.xz
Start creating a module to do generic notifications (just prints them to stdout currently!)
Diffstat (limited to 'synapse/api/errors.py')
-rw-r--r--synapse/api/errors.py1
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):