13 lines
407 B
Go
13 lines
407 B
Go
package client
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
// ErrMissingIDMappings gets returned if user namespace unsharing is selected
|
|
// but no IDMappings being provided.
|
|
ErrMissingIDMappings = errors.New("unsharing user namespace selected but no IDMappings provided")
|
|
|
|
// ErrUnsupported gets returned if the server does not the feature.
|
|
ErrUnsupported = errors.New("feature not supported by this conmon-rs version")
|
|
)
|