1
0
mirror of https://github.com/openshift/installer.git synced 2026-02-05 15:47:14 +01:00
Files
Patrick Dillon 89d9849658 vendor: capi v1.11 & openshift/api
go mod vendor
2025-11-11 16:19:45 -05:00

22 lines
528 B
Go

// © 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
}