mirror of
https://github.com/docker/compose.git
synced 2025-07-02 03:14:26 +02:00
11 lines
217 B
Python
11 lines
217 B
Python
from __future__ import absolute_import
|
|
from textwrap import dedent
|
|
|
|
|
|
class UserError(Exception):
|
|
def __init__(self, msg):
|
|
self.msg = dedent(msg).strip()
|
|
|
|
def __unicode__(self):
|
|
return self.msg
|