1
0
mirror of https://github.com/golang/go synced 2024-10-03 07:21:21 -06:00

crypto/openpgp/error: use Error in names of error impl types

Will make gofix for error work better.
There is no other indication in this file that
these are actually error implementations.

(They are only used elsewhere.)

R=bradfitz
CC=golang-dev
https://golang.org/cl/5305068
This commit is contained in:
Russ Cox 2011-10-27 19:38:32 -07:00
parent 8a7b2b2f70
commit 6715551768

View File

@ -41,21 +41,21 @@ func (b SignatureError) String() string {
return "OpenPGP signature invalid: " + string(b)
}
type keyIncorrect int
type keyIncorrectError int
func (ki keyIncorrect) String() string {
func (ki keyIncorrectError) String() string {
return "the given key was incorrect"
}
var KeyIncorrectError = keyIncorrect(0)
var KeyIncorrectError = keyIncorrectError(0)
type unknownIssuer int
type unknownIssuerError int
func (unknownIssuer) String() string {
func (unknownIssuerError) String() string {
return "signature make by unknown entity"
}
var UnknownIssuerError = unknownIssuer(0)
var UnknownIssuerError = unknownIssuerError(0)
type UnknownPacketTypeError uint8