ErrorCause is an error interface that contains the method Cause() for returning root cause errors
| 69 | |
| 70 | // ErrorCause is an error interface that contains the method Cause() for returning root cause errors |
| 71 | type ErrorCause interface { |
| 72 | Cause() error |
| 73 | } |
| 74 | |
| 75 | type HTTPErrorResponse20240101 struct { |
| 76 | Code apierrors.ErrorCode `json:"code"` |
no outgoing calls
no test coverage detected
searching dependent graphs…