errors.py 126 B

123456
  1. from textwrap import dedent
  2. class UserError(Exception):
  3. def __init__(self, msg):
  4. self.msg = dedent(msg).strip()