MasterDownError is returned when the master is down.
| 118 | |
| 119 | // MasterDownError is returned when the master is down. |
| 120 | type MasterDownError struct { |
| 121 | msg string |
| 122 | } |
| 123 | |
| 124 | func (e *MasterDownError) Error() string { |
| 125 | return e.msg |
nothing calls this directly
no outgoing calls
no test coverage detected