| 72 | } |
| 73 | |
| 74 | type decryptGroupError struct { |
| 75 | groupName string |
| 76 | err error |
| 77 | } |
| 78 | |
| 79 | func (r *decryptGroupError) Error() string { |
| 80 | return fmt.Sprintf("could not decrypt group %s: %s", r.groupName, r.err) |
nothing calls this directly
no outgoing calls
no test coverage detected