Files
docker-docs/plum/cli/errors.py
Ben Firshman 3b654ad349 Add basic CLI
2013-12-11 14:25:32 +00:00

7 lines
126 B
Python

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