Typed Redis errors for better error handling with wrapping support. These errors maintain backward compatibility by keeping the same error messages. LoadingError is returned when Redis is loading the dataset in memory.
| 10 | |
| 11 | // LoadingError is returned when Redis is loading the dataset in memory. |
| 12 | type LoadingError struct { |
| 13 | msg string |
| 14 | } |
| 15 | |
| 16 | func (e *LoadingError) Error() string { |
| 17 | return e.msg |
nothing calls this directly
no outgoing calls
no test coverage detected