Documentation ¶
Overview ¶
Package status implements errors returned by gRPC. These errors are serialized and transmitted on the wire between server and client, and allow for additional data to be transmitted via the Details field in the status proto. gRPC service handlers should return an error created by this package, and gRPC clients should expect a corresponding error to be returned from the RPC call.
This package upholds the invariants that a non-nil error may not contain an OK code, and an OK code must result in a nil error.
Index ¶
- func Code(err error) codes.Code
- func Err(c codes.Code, msg string) error
- func ErrorProto(s *spb.Status) error
- func Errorf(c codes.Code, format string, a ...interface{}) error
- type Error
- type Iface
- type Status
- func (s *Status) AppendMessage(extraMsg string) *Status
- func (s *Status) Code() codes.Code
- func (s *Status) Details() []interface{}
- func (s *Status) Err() error
- func (s *Status) Message() string
- func (s *Status) Proto() *spb.Status
- func (s *Status) WithDetails(details ...proto.Message) (*Status, error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Code ¶
Code returns the Code of the error if it is a Status error, codes.OK if err is nil, or codes.Unknown otherwise.
func ErrorProto ¶ added in v0.3.0
ErrorProto returns an error representing s. If s.Code is OK, returns nil.
Types ¶
type Error ¶
type Error struct {
// contains filtered or unexported fields
}
Error wraps a pointer of a status proto. It implements error and Status, and a nil *Error should never be returned by this package.
func (*Error) GRPCStatus ¶
GRPCStatus returns the Status represented by se.
type Status ¶
type Status struct {
// contains filtered or unexported fields
}
Status represents an RPC status code, message, and details. It is immutable and should be created with New, Newf, or FromProto.
func Convert ¶
Convert is a convenience function which removes the need to handle the boolean return value from FromError.
func FromContextError ¶
FromContextError converts a context error into a Status. It returns a Status with codes.OK if err is nil, or a Status with codes.Unknown if err is non-nil and not a context error.
func FromError ¶
FromError returns a Status representing err if it was produced from this package or has a method `GRPCStatus() *Status`. Otherwise, ok is false and a Status is returned with codes.Unknown and the original error message.
func (*Status) AppendMessage ¶ added in v0.3.3
AppendMessage append extra msg for Status
func (*Status) Details ¶
func (s *Status) Details() []interface{}
Details returns a slice of details messages attached to the status. If a detail cannot be decoded, the error is returned in place of the detail.