A base class from which all other exceptions inherit. If you want to catch all errors that the Docker SDK might raise, catch this base exception.
| 11 | |
| 12 | |
| 13 | class DockerException(Exception): |
| 14 | """ |
| 15 | A base class from which all other exceptions inherit. |
| 16 | |
| 17 | If you want to catch all errors that the Docker SDK might raise, |
| 18 | catch this base exception. |
| 19 | """ |
| 20 | |
| 21 | |
| 22 | def create_api_error_from_http_exception(e): |
no outgoing calls
no test coverage detected