class Adyen::API::SimpleSOAPClient::StandardError
Public Class Methods
new(response, action, endpoint)
click to toggle source
# File lib/adyen/api/simple_soap_client.rb 26 def initialize(response, action, endpoint) 27 @response, @action, @endpoint = response, action, endpoint 28 end
Private Instance Methods
message_prefix()
click to toggle source
# File lib/adyen/api/simple_soap_client.rb 32 def message_prefix 33 %{[#{@response.http_response.code} #{@response.http_response.message}] A %s error occurred while calling SOAP action `#{@action}' on endpoint `#{@endpoint}'.} 34 end