compose/fig/cli/errors.py

8 lines
165 B
Python

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