| 118 | |
| 119 | |
| 120 | class TLSParameterError(DockerException): |
| 121 | def __init__(self, msg): |
| 122 | self.msg = msg |
| 123 | |
| 124 | def __str__(self): |
| 125 | return self.msg + (". TLS configurations should map the Docker CLI " |
| 126 | "client configurations. See " |
| 127 | "https://docs.docker.com/engine/articles/https/ " |
| 128 | "for API details.") |
| 129 | |
| 130 | |
| 131 | class NullResource(DockerException, ValueError): |