compose/fig/cli/errors.py
2013-12-20 20:28:24 +00:00

7 lines
126 B
Python

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