Sha256: 4a588ea23ad08b78ba9f830c52617dfb0d6ef6c398cdc0a9d65ff699dbf7cc77
Contents?: true
Size: 317 Bytes
Versions: 28
Compression:
Stored size: 317 Bytes
Contents
# Copyright (c) 2011-2017 VMware, Inc. All Rights Reserved. # SPDX-License-Identifier: MIT module RbVmomi class Fault < StandardError attr_reader :fault def initialize msg, fault super "#{fault.class.wsdl_name}: #{msg}" @fault = fault end def method_missing *a @fault.send(*a) end end end
Version data entries
28 entries across 26 versions & 3 rubygems