mirror of
https://github.com/docker/compose.git
synced 2026-09-09 04:34:42 +00:00
7 lines
178 B
Python
7 lines
178 B
Python
from __future__ import absolute_import
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
class OperationFailedError(Exception):
|
|
def __init__(self, reason):
|
|
self.msg = reason
|