Class: WSS4R::Security::Exceptions::NoSecurityFault

Inherits:
WSS4RFault
  • Object
show all
Defined in:
lib/wss4r/security/exceptions/exceptions.rb

Instance Attribute Summary

Attributes inherited from WSS4RFault

#detail, #faultactor, #faultcode, #faultstring

Instance Method Summary collapse

Constructor Details

#initializeNoSecurityFault

Returns a new instance of NoSecurityFault.



51
52
53
54
55
56
# File 'lib/wss4r/security/exceptions/exceptions.rb', line 51

def initialize()
         @faultcode = "103"
         @faultstring = FaultString.new("No security token received.")
         @faultactor = "test"
         @detail = "No security token received."
end