Documentation ¶
Overview ¶
Package errors contains simple error variables.
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // ErrConnectionNotReady indicated that the network connection to the gRPC server is not ready. ErrConnectionNotReady = errors.New("gRPC connection not ready") // ErrNil indicates that a nil/null pointer was encountered. ErrNil = errors.New("nil pointer") // ErrMissingEmptyConfigSection indicates that a required config file section is missing (not present) or empty (zero-length). ErrMissingEmptyConfigSection = errors.New("config file section is missing/empty") )
Functions ¶
func ErrorDetail ¶ added in v0.42.0
ErrorDetail takes an error, converts it to a gRPC Status object, and pulls out the code, message, and (most importantly) the details list.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.