/
githubmirror
/
origin
Обзор
Документация
Войти
/
githubmirror
/
origin
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
vendor/github.com/vmware/govmomi/task/error.go
21 строка
528 B
Justin Pierce
Add compat_otp package with openshift-tests-private (OTP) util implementations
11 авг 2025, 18:00
11 авг 2025, 18:00
80ac5c1
Код
Авторство
О чём код?
// © Broadcom. All Rights Reserved. // The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. // SPDX-License-Identifier: Apache-2.0 package task import "github.com/vmware/govmomi/vim25/types" type Error struct { *types.LocalizedMethodFault Description *types.LocalizableMessage } // Error returns the task's localized fault message. func (e Error) Error() string { return e.LocalizedMethodFault.LocalizedMessage } func (e Error) Fault() types.BaseMethodFault { return e.LocalizedMethodFault.Fault }