class Ripcord::Error::InvalidJSON

Public Class Methods

new(response_body) click to toggle source
Calls superclass method
# File lib/ripcord/error.rb, line 15
def initialize(response_body)
  super("Couldn't parse JSON string received from server\nResponse: #{response_body}")
end