IsUnauthenticated returns whether the given error is of type Unauthenticated.
(err error)
| 123 | |
| 124 | // IsUnauthenticated returns whether the given error is of type Unauthenticated. |
| 125 | func IsUnauthenticated(err error) bool { return HasCode(err, uint32(codes.Unauthenticated)) } |