32a6c22b43
This change also merges formats into the new image module.
10 lines
190 B
Python
10 lines
190 B
Python
"""
|
|
docker implements pure data transformations according to the many Docker specifications.
|
|
"""
|
|
|
|
class DockerException(Exception):
|
|
pass
|
|
|
|
|
|
class ManifestException(DockerException):
|
|
pass
|