Error builds an error message.
()
| 150 | |
| 151 | // Error builds an error message. |
| 152 | func (c ClientError) Error() string { |
| 153 | return fmt.Sprintf("[%s %s]: %s", c.Service, c.Method, c.Message) |
| 154 | } |
| 155 | |
| 156 | // ErrInvalidType is the error returned when the wrong type is given to a |
| 157 | // method function. |
no outgoing calls