google.golang.org/grpc/internal/status.Status.Err (method)
24 uses
google.golang.org/grpc/internal/status (current package)
status.go#L63: return New(c, msg).Err()
status.go#L96: func (s *Status) Err() error {
google.golang.org/grpc/internal/transport
http2_client.go#L990: err = st.Err()
http2_client.go#L1385: t.closeStream(s, st.Err(), true, http2.ErrCodeProtocol, st, nil, false)
http2_client.go#L1393: t.closeStream(s, se.Err(), true, http2.ErrCodeFrameSize, se, nil, endStream)
http2_client.go#L1433: t.closeStream(s, se.Err(), true, http2.ErrCodeProtocol, se, nil, endStream)
http2_client.go#L1456: t.closeStream(s, se.Err(), true, http2.ErrCodeProtocol, se, nil, endStream)
http2_client.go#L1500: t.closeStream(s, se.Err(), true, http2.ErrCodeProtocol, se, nil, endStream)
http2_client.go#L1506: t.closeStream(s, se.Err(), true, http2.ErrCodeProtocol, se, nil, endStream)
http2_server.go#L977: return status.Convert(err).Err()
transport.go#L375: return nil, s.status.Err()
google.golang.org/grpc
clientconn.go#L577: return status.FromContextError(ctx.Err()).Err()
rpc_util.go#L701: return nil, st.Err()
server.go#L1276: return st.Err()
server.go#L1343: appErr = appStatus.Err()
server.go#L1590: return st.Err()
server.go#L1635: appErr = appStatus.Err()
stream.go#L688: return false, status.FromContextError(cs.ctx.Err()).Err()
stream.go#L1063: if statusErr := a.s.Status().Err(); statusErr != nil {
stream.go#L1103: return a.s.Status().Err() // non-server streaming Recv returns nil on success
stream.go#L1397: if statusErr := as.s.Status().Err(); statusErr != nil {
stream.go#L1420: return as.s.Status().Err() // non-server streaming Recv returns nil on success
google.golang.org/grpc/status
status.go#L59: return New(c, msg).Err()
status.go#L69: return FromProto(s).Err()