Exception: XMLRPC::FaultException
Relationships & Source Files | |
Super Chains via Extension / Inclusion / Inheritance | |
Class Chain:
self,
StandardError
|
|
Instance Chain:
self,
StandardError
|
|
Inherits: |
StandardError
|
Defined in: | lib/xmlrpc/parser.rb |
Overview
Raised when the remote procedure returns a fault-structure, which has two accessor-methods #faultCode an Integer, and #faultString a String.
Class Method Summary
-
.new(faultCode, faultString) ⇒ FaultException
constructor
Creates a new
FaultException
instance.
Instance Attribute Summary
- #faultCode readonly
- #faultString readonly
Instance Method Summary
-
#to_h
The #faultCode and #faultString of the exception in a Hash.
Constructor Details
.new(faultCode, faultString) ⇒ FaultException
Creates a new FaultException
instance.
#faultString is passed to StandardError as the msg
of the Exception.
# File 'lib/xmlrpc/parser.rb', line 59
def initialize(faultCode, faultString) @faultCode = faultCode @faultString = faultString super(@faultString) end
Instance Attribute Details
#faultCode (readonly)
[ GitHub ]# File 'lib/xmlrpc/parser.rb', line 54
attr_reader :faultCode, :faultString
#faultString (readonly)
[ GitHub ]# File 'lib/xmlrpc/parser.rb', line 54
attr_reader :faultCode, :faultString
Instance Method Details
#to_h
The #faultCode and #faultString of the exception in a Hash.
# File 'lib/xmlrpc/parser.rb', line 66
def to_h {"faultCode" => @faultCode, "faultString" => @faultString} end