diff options
Diffstat (limited to 'acme/types.go')
| -rw-r--r-- | acme/types.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/acme/types.go b/acme/types.go index 45492ad..640223c 100644 --- a/acme/types.go +++ b/acme/types.go @@ -56,6 +56,10 @@ var ( // ErrNoAccount indicates that the Client's key has not been registered with the CA. ErrNoAccount = errors.New("acme: account does not exist") + + // errPreAuthorizationNotSupported indicates that the server does not + // support pre-authorization of identifiers. + errPreAuthorizationNotSupported = errors.New("acme: pre-authorization is not supported") ) // A Subproblem describes an ACME subproblem as reported in an Error. |
