functions

The Fool guy's FAAS
git clone git://git.lair.cx/functions
Log | Files | Refs | README

errors.go (379B)


      1 package vmutils
      2 
      3 import "errors"
      4 
      5 var (
      6 	ErrMachineNotStarted      = errors.New("vmutils: machine not started")
      7 	ErrNoNetworkInterfaces    = errors.New("vmutils: no network interfaces is configured")
      8 	ErrNonCniNetworkInterface = errors.New("vmutils: non-CNI network interface is not supported")
      9 	ErrNoVsockDevice          = errors.New("vmutils: no vsock device is configured")
     10 )