mirror of
https://github.com/docker/docs.git
synced 2026-03-29 15:28:51 +07:00
8 lines
178 B
Python
8 lines
178 B
Python
from __future__ import absolute_import
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
class OperationFailedError(Exception):
|
|
def __init__(self, reason):
|
|
self.msg = reason
|