ceremonyclient/node/keyedaggregator/errors.go
Cassandra Heart aac841e6e6
v2.1.0.11 (#477)
* v2.1.0.11

* v2.1.0.11, the later half
2025-11-21 04:41:02 -06:00

14 lines
452 B
Go

package keyedaggregator
import "errors"
var (
// ErrSequenceBelowRetention indicates that a collector for the requested
// sequence can no longer be accessed because it was pruned.
ErrSequenceBelowRetention = errors.New("sequence below retention threshold")
// ErrSequenceUnknown indicates that the requested sequence is not known to
// the collaborating components and should be dropped.
ErrSequenceUnknown = errors.New("unknown sequence")
)