errorWrapper is the wrapper that converts responses with 4xx and 5xx status codes to an error.
| 18 | // errorWrapper is the wrapper that converts responses with 4xx and 5xx status |
| 19 | // codes to an error. |
| 20 | type errorWrapper struct { |
| 21 | connection cloudcontroller.Connection |
| 22 | } |
| 23 | |
| 24 | func newErrorWrapper() *errorWrapper { |
| 25 | return new(errorWrapper) |
nothing calls this directly
no outgoing calls
no test coverage detected