| 152 | func (e *unauthedError) IsUnauthorized() bool { return true } |
| 153 | |
| 154 | type argError struct { |
| 155 | name string |
| 156 | } |
| 157 | |
| 158 | func (e *argError) Error() string { return fmt.Sprintf("invalid argument: %s", e.name) } |
| 159 | func (e *argError) ArgName() string { return e.name } |
nothing calls this directly
no outgoing calls
no test coverage detected