mirror of
https://github.com/docker/docs.git
synced 2026-03-28 23:08:49 +07:00
12 lines
241 B
Go
12 lines
241 B
Go
package libmachine
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
ErrHostDoesNotExist = errors.New("Host does not exist")
|
|
ErrInvalidHostname = errors.New("Invalid hostname specified")
|
|
ErrUnknownProviderType = errors.New("Unknown hypervisor type")
|
|
)
|