InvalidArgument reports a malformed or semantically invalid request.
(msg string)
| 67 | |
| 68 | // InvalidArgument reports a malformed or semantically invalid request. |
| 69 | func InvalidArgument(msg string) error { |
| 70 | return &Error{Kind: KindInvalidArgument, msg: msg} |
| 71 | } |
| 72 | |
| 73 | // Unauthenticated reports a missing or invalid credential/session. |
| 74 | func Unauthenticated(msg string) error { |
no outgoing calls
no test coverage detected