compose/plum/cli/errors.py
2013-12-11 14:25:32 +00:00

6 lines
126 B
Python

from textwrap import dedent
class UserError(Exception):
def __init__(self, msg):
self.msg = dedent(msg).strip()