MovedError is returned when a key has been moved to a different node in a cluster.
| 42 | |
| 43 | // MovedError is returned when a key has been moved to a different node in a cluster. |
| 44 | type MovedError struct { |
| 45 | msg string |
| 46 | addr string |
| 47 | } |
| 48 | |
| 49 | func (e *MovedError) Error() string { |
| 50 | return e.msg |
nothing calls this directly
no outgoing calls
no test coverage detected