Merge pull request #353 from iamqizhao/master

add accessor for the error desc of rpcError
This commit is contained in:
Qi Zhao
2015-09-22 16:47:09 -07:00

View File

@ -217,6 +217,18 @@ func Code(err error) codes.Code {
return codes.Unknown return codes.Unknown
} }
// Desc returns the error description of err if it was produced by the rpc system.
// Otherwise, it returns err.Error() or empty string when err is nil.
func Desc(err error) string {
if err == nil {
return ""
}
if e, ok := err.(rpcError); ok {
return e.desc
}
return err.Error()
}
// Errorf returns an error containing an error code and a description; // Errorf returns an error containing an error code and a description;
// Errorf returns nil if c is OK. // Errorf returns nil if c is OK.
func Errorf(c codes.Code, format string, a ...interface{}) error { func Errorf(c codes.Code, format string, a ...interface{}) error {