ClusterDownError is returned when the cluster is down.
| 86 | |
| 87 | // ClusterDownError is returned when the cluster is down. |
| 88 | type ClusterDownError struct { |
| 89 | msg string |
| 90 | } |
| 91 | |
| 92 | func (e *ClusterDownError) Error() string { |
| 93 | return e.msg |
nothing calls this directly
no outgoing calls
no test coverage detected