summaryrefslogtreecommitdiff
path: root/vendor/github.com/docker/go-events/errors.go
blob: 56db7c25103935fd58fa45dd31d98749ab6ddf72 (plain)
1
2
3
4
5
6
7
8
9
10
package events

import "fmt"

var (
	// ErrSinkClosed is returned if a write is issued to a sink that has been
	// closed. If encountered, the error should be considered terminal and
	// retries will not be successful.
	ErrSinkClosed = fmt.Errorf("events: sink closed")
)