OOMError is returned when Redis is out of memory.
| 198 | |
| 199 | // OOMError is returned when Redis is out of memory. |
| 200 | type OOMError struct { |
| 201 | msg string |
| 202 | } |
| 203 | |
| 204 | func (e *OOMError) Error() string { |
| 205 | return e.msg |
nothing calls this directly
no outgoing calls
no test coverage detected