mirror of
https://github.com/docker/compose.git
synced 2025-11-03 05:04:47 +01:00
7 lines
126 B
Python
7 lines
126 B
Python
from textwrap import dedent
|
|
|
|
|
|
class UserError(Exception):
|
|
def __init__(self, msg):
|
|
self.msg = dedent(msg).strip()
|