Error wraps a pointer of a status proto. It implements error and Status, and a nil *Error should never be returned by this package.
| 205 | // Error wraps a pointer of a status proto. It implements error and Status, |
| 206 | // and a nil *Error should never be returned by this package. |
| 207 | type Error struct { |
| 208 | s *Status |
| 209 | } |
| 210 | |
| 211 | func (e *Error) Error() string { |
| 212 | return e.s.String() |
nothing calls this directly
no outgoing calls
no test coverage detected