class Seahorse::Client::Plugins::RaiseResponseErrors::Handler

@api private

Public Instance Methods

call(context) click to toggle source
# File lib/seahorse/client/plugins/raise_response_errors.rb, line 13
def call(context)
  response = @handler.call(context)
  raise response.error if response.error
  response
end