var golang.org/x/net/http2.ErrFrameTooLarge

6 uses

	golang.org/x/net/http2 (current package)
		frame.go#L376: 		return ErrFrameTooLarge
		frame.go#L490: var ErrFrameTooLarge = errors.New("http2: frame too large")
		frame.go#L519: 			return fh, fmt.Errorf("http2: failed reading the frame payload: %w, note that the frame header looked like an HTTP/1.1 header", ErrFrameTooLarge)
		frame.go#L521: 		return fh, ErrFrameTooLarge
		server.go#L1376: 		if err == ErrFrameTooLarge {
		transport.go#L1862: 	if errors.Is(err, ErrFrameTooLarge) {