class Trell::Response::RaiseError

Private Instance Methods

on_complete(response) click to toggle source
# File lib/trell/response/raise_error.rb, line 9
def on_complete(response)
  if error = Trell::Error.from_response(response)
    raise error
  end
end