github.com/containers/libpod@v1.9.4-0.20220419124438-4284fd425507/cmd/podman/remoteclientconfig/errors.go (about)

     1  package remoteclientconfig
     2  
     3  import "errors"
     4  
     5  var (
     6  	// ErrNoDefaultConnection no default connection is defined in the podman-remote.conf file
     7  	ErrNoDefaultConnection = errors.New("no default connection is defined")
     8  	// ErrNoDefinedConnections no connections are defined in the podman-remote.conf file
     9  	ErrNoDefinedConnections = errors.New("no remote connections have been defined")
    10  	// ErrConnectionNotFound unable to lookup connection by name
    11  	ErrConnectionNotFound = errors.New("remote connection not found by name")
    12  	// ErrNoConfigationFile no config file found
    13  	ErrNoConfigationFile = errors.New("no configuration file found")
    14  )