a22fff9c57
Signed-off-by: Sven Dowideit <sven.dowideit@portainer.io>
9 lines
142 B
Go
9 lines
142 B
Go
package docker
|
|
|
|
import "errors"
|
|
|
|
// Docker errors
|
|
var (
|
|
ErrUnableToPingEndpoint = errors.New("Unable to communicate with the environment")
|
|
)
|