type net/url.Error
14 uses
net/url (current package)
url.go#L22: type Error struct {
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#L31: func (e *Error) Timeout() bool {
url.go#L38: func (e *Error) Temporary() bool {
url.go#L480: return nil, &Error{"parse", u, err}
url.go#L486: return nil, &Error{"parse", rawurl, err}
url.go#L499: return nil, &Error{"parse", rawurl, err}
net/http
client.go#L596: return nil, &url.Error{
client.go#L624: return &url.Error{
client.go#L709: ue.(*url.Error).URL = loc
cloud.google.com/go/storage
go110.go#L32: case *url.Error:
github.com/aws/aws-sdk-go/aws/corehandlers
handlers.go#L142: if e, ok := err.(*url.Error); ok && e.Err != nil {
github.com/aws/aws-sdk-go/aws/request
retryer.go#L191: case *url.Error:
 |
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. |