()
| 191 | } |
| 192 | |
| 193 | func (e badRequestError) Unwrap() error { |
| 194 | err := errors.Unwrap(e.origin) |
| 195 | if err != nil { |
| 196 | return err |
| 197 | } |
| 198 | return nil |
| 199 | } |
| 200 | |
| 201 | // ErrorLink represents a RFC8288 web link. |
| 202 | type ErrorLink struct { |
no outgoing calls
no test coverage detected