github.com/altoros/juju-vmware@v0.0.0-20150312064031-f19ae857ccca/worker/uniter/operation/errors.go (about) 1 // Copyright 2014 Canonical Ltd. 2 // Licensed under the AGPLv3, see LICENCE file for details. 3 4 package operation 5 6 import ( 7 "github.com/juju/errors" 8 ) 9 10 var ( 11 ErrNoStateFile = errors.New("uniter state file does not exist") 12 ErrSkipExecute = errors.New("operation already executed") 13 ErrNeedsReboot = errors.New("reboot request issued") 14 ErrHookFailed = errors.New("hook failed") 15 )