mirror of
https://github.com/docker/docs.git
synced 2026-03-30 15:58:53 +07: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()
|