diff options
Diffstat (limited to 'docker/errors.py')
-rw-r--r-- | docker/errors.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docker/errors.py b/docker/errors.py index 50423a2..eeeac57 100644 --- a/docker/errors.py +++ b/docker/errors.py @@ -144,6 +144,10 @@ class BuildError(Exception): pass +class ImageLoadError(DockerException): + pass + + def create_unexpected_kwargs_error(name, kwargs): quoted_kwargs = ["'{}'".format(k) for k in sorted(kwargs)] text = ["{}() ".format(name)] |