зеркало из https://github.com/microsoft/moc.git
Add RunCommandFailed error code
This commit is contained in:
Родитель
1c1b947f84
Коммит
7bf9c09b3d
|
@ -124,6 +124,8 @@ func GetErrorCode(err error) string {
|
|||
return "Invalid Type"
|
||||
} else if wmi.IsWMIError(err) {
|
||||
return err.Error()
|
||||
} else if IsRunCommandFailed(err) {
|
||||
return "RunCommandFailed"
|
||||
}
|
||||
|
||||
return "GenericError"
|
||||
|
@ -295,6 +297,10 @@ func IsErrDeadlineExceeded(err error) bool {
|
|||
return checkError(err, os.ErrDeadlineExceeded)
|
||||
}
|
||||
|
||||
func IsRunCommandFailed(err error) bool {
|
||||
return checkError(err, RunCommandFailed)
|
||||
}
|
||||
|
||||
func checkError(wrappedError, err error) bool {
|
||||
if wrappedError == nil {
|
||||
return false
|
||||
|
|
Загрузка…
Ссылка в новой задаче