Error implements the Error interface.
()
| 8 | |
| 9 | // Error implements the Error interface. |
| 10 | func (e *NeedRetryWithApiReaderError) Error() string { |
| 11 | return e.ErrMsg |
| 12 | } |
| 13 | |
| 14 | func IsNeedRetryWithApiReaderError(err error) bool { |
| 15 | if _, ok := err.(*NeedRetryWithApiReaderError); ok { |
no outgoing calls