TryAgainError is returned when a command cannot be processed and should be retried.
| 102 | |
| 103 | // TryAgainError is returned when a command cannot be processed and should be retried. |
| 104 | type TryAgainError struct { |
| 105 | msg string |
| 106 | } |
| 107 | |
| 108 | func (e *TryAgainError) Error() string { |
| 109 | return e.msg |
nothing calls this directly
no outgoing calls
no test coverage detected