()
| 36 | } |
| 37 | |
| 38 | func (err *getDataKeyError) Error() string { |
| 39 | return fmt.Sprintf("Error getting data key: %d successful groups "+ |
| 40 | "required, got %d", err.RequiredSuccessfulKeyGroups, |
| 41 | err.successfulKeyGroups()) |
| 42 | } |
| 43 | |
| 44 | func (err *getDataKeyError) UserError() string { |
| 45 | var groupErrs []string |
no test coverage detected