errors.py 165 B

1234567
  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()