summaryrefslogtreecommitdiff
path: root/cmd/podman/remoteclientconfig/errors.go
blob: 2689d3b499c2d49e2bf78e38b59e24bb440c1e86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package remoteclientconfig

import "errors"

var (
	// ErrNoDefaultConnection no default connection is defined in the podman-remote.conf file
	ErrNoDefaultConnection = errors.New("no default connection is defined")
	// ErrNoDefinedConnections no connections are defined in the podman-remote.conf file
	ErrNoDefinedConnections = errors.New("no remote connections have been defined")
	// ErrConnectionNotFound unable to lookup connection by name
	ErrConnectionNotFound = errors.New("remote connection not found by name")
	// ErrNoConfigationFile no config file found
	ErrNoConfigationFile = errors.New("no configuration file found")
)