errors.py 217 B

12345678910
  1. from __future__ import absolute_import
  2. from textwrap import dedent
  3. class UserError(Exception):
  4. def __init__(self, msg):
  5. self.msg = dedent(msg).strip()
  6. def __unicode__(self):
  7. return self.msg