1
0
mirror of https://github.com/go-acme/lego.git synced 2024-12-23 09:15:11 +02:00
lego/certificate/errors.go

41 lines
614 B
Go
Raw Normal View History

2019-03-11 18:56:48 +02:00
package certificate
import (
2023-08-19 18:05:33 +02:00
"errors"
"fmt"
)
2023-08-19 18:05:33 +02:00
type obtainError struct {
data map[string]error
}
func newObtainError() *obtainError {
return &obtainError{data: make(map[string]error)}
}
2023-08-19 18:05:33 +02:00
func (e *obtainError) Add(domain string, err error) {
e.data[domain] = err
}
2023-08-19 18:05:33 +02:00
func (e *obtainError) Join() error {
if e == nil {
return nil
}
2023-08-19 18:05:33 +02:00
if len(e.data) == 0 {
return nil
}
2023-08-19 18:05:33 +02:00
var err error
for d, e := range e.data {
err = errors.Join(err, fmt.Errorf("%s: %w", d, e))
}
return fmt.Errorf("error: one or more domains had a problem:\n%w", err)
}
type domainError struct {
Domain string
Error error
}