AuthError is returned when authentication fails.
| 150 | |
| 151 | // AuthError is returned when authentication fails. |
| 152 | type AuthError struct { |
| 153 | msg string |
| 154 | } |
| 155 | |
| 156 | func (e *AuthError) Error() string { |
| 157 | return e.msg |
nothing calls this directly
no outgoing calls
no test coverage detected