mirror of
https://github.com/containers/podman.git
synced 2025-12-02 02:58:03 +08:00
17 lines
425 B
Go
17 lines
425 B
Go
package define
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
// ErrNoSuchSecret indicates that the secret does not exist
|
|
ErrNoSuchSecret = errors.New("no such secret")
|
|
|
|
// ErrSecretIDExists indicates that there is secret data already associated with an id
|
|
ErrSecretIDExists = errors.New("secret data with ID already exists")
|
|
|
|
// ErrInvalidKey indicates that something about your key is wrong
|
|
ErrInvalidKey = errors.New("invalid key")
|
|
)
|