(err error)
| 36 | } |
| 37 | |
| 38 | func IsErrKeyUnableVerify(err error) bool { |
| 39 | _, ok := err.(ErrKeyUnableVerify) |
| 40 | return ok |
| 41 | } |
| 42 | |
| 43 | func (err ErrKeyUnableVerify) Error() string { |
| 44 | return fmt.Sprintf("Unable to verify key content [result: %s]", err.Result) |
no outgoing calls
no test coverage detected