Class: WSS4R::Security::Exceptions::WSS4RFault
- Inherits:
-
SOAP::FaultError
- Object
- SOAP::FaultError
- WSS4R::Security::Exceptions::WSS4RFault
- Defined in:
- lib/wss4r/security/exceptions/exceptions.rb
Direct Known Subclasses
NoSecurityFault, TimestampFault, UsernameTokenFault, VerificationFault
Instance Attribute Summary collapse
-
#detail ⇒ Object
Returns the value of attribute detail.
-
#faultactor ⇒ Object
Returns the value of attribute faultactor.
-
#faultcode ⇒ Object
Returns the value of attribute faultcode.
-
#faultstring ⇒ Object
Returns the value of attribute faultstring.
Instance Method Summary collapse
-
#initialize(faultcode, faultstring, faultactor, detail) ⇒ WSS4RFault
constructor
A new instance of WSS4RFault.
Constructor Details
#initialize(faultcode, faultstring, faultactor, detail) ⇒ WSS4RFault
Returns a new instance of WSS4RFault.
15 16 17 18 19 20 |
# File 'lib/wss4r/security/exceptions/exceptions.rb', line 15 def initialize(faultcode,faultstring,faultactor,detail) @faultcode = faultcode @faultstring = FaultString.new(faultstring) @faultactor = faultactor @detail = detail end |
Instance Attribute Details
#detail ⇒ Object
Returns the value of attribute detail.
13 14 15 |
# File 'lib/wss4r/security/exceptions/exceptions.rb', line 13 def detail @detail end |
#faultactor ⇒ Object
Returns the value of attribute faultactor.
13 14 15 |
# File 'lib/wss4r/security/exceptions/exceptions.rb', line 13 def faultactor @faultactor end |
#faultcode ⇒ Object
Returns the value of attribute faultcode.
13 14 15 |
# File 'lib/wss4r/security/exceptions/exceptions.rb', line 13 def faultcode @faultcode end |
#faultstring ⇒ Object
Returns the value of attribute faultstring.
13 14 15 |
# File 'lib/wss4r/security/exceptions/exceptions.rb', line 13 def faultstring @faultstring end |