class LookerSDK::Response::RaiseError

HTTP status codes returned by the API

Public Instance Methods

on_complete(response) click to toggle source
# File lib/looker-sdk/response/raise_error.rb, line 35
def on_complete(response)
  if error = LookerSDK::Error.from_response(response)
    raise error
  end
end