@@ -0,0 +1,4 @@
+# flake8: noqa
+from misago.threads.moderation.exceptions import *
+from misago.threads.moderation.threads import *
+from misago.threads.moderation.posts import *
@@ -0,0 +1,6 @@
+class ModerationError(Exception):
+ def __init__(self, message):
+ self.message = message
+
+ def __unicode__(self):
+ return self.message
@@ -0,0 +1 @@
+from misago.threads.moderation.exceptions import ModerationError