exceptions.py 243 B

12345678910
  1. from django.utils.encoding import python_2_unicode_compatible
  2. @python_2_unicode_compatible
  3. class ModerationError(Exception):
  4. def __init__(self, message):
  5. self.message = message
  6. def __str__(self):
  7. return self.message