initial pass at internal api
Signed-off-by: Evan Hazlett <ejhazlett@gmail.com>
This commit is contained in:
11
libmachine/errors.go
Normal file
11
libmachine/errors.go
Normal file
@@ -0,0 +1,11 @@
|
||||
package libmachine
|
||||
|
||||
import (
|
||||
"errors"
|
||||
)
|
||||
|
||||
var (
|
||||
ErrHostDoesNotExist = errors.New("Host does not exist")
|
||||
ErrInvalidHostname = errors.New("Invalid hostname specified")
|
||||
ErrUnknownProviderType = errors.New("Unknown hypervisor type")
|
||||
)
|
||||
Reference in New Issue
Block a user