net/url.Error.Err (field)
10 uses
net/url (current package)
url.go#L25: Err error
url.go#L28: func (e *Error) Unwrap() error { return e.Err }
url.go#L29: func (e *Error) Error() string { return fmt.Sprintf("%s %q: %s", e.Op, e.URL, e.Err) }
url.go#L32: t, ok := e.Err.(interface {
url.go#L39: t, ok := e.Err.(interface {
net/http
client.go#L598: Err: errors.New("http: nil Request.URL"),
client.go#L627: Err: err,
github.com/aws/aws-sdk-go/aws/corehandlers
handlers.go#L142: if e, ok := err.(*url.Error); ok && e.Err != nil {
handlers.go#L143: if s := reStatusCode.FindStringSubmatch(e.Err.Error()); s != nil {
github.com/aws/aws-sdk-go/aws/request
retryer.go#L200: return shouldRetryError(err.Err)
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |