module Parse # Base exception class for errors thrown by the Parse # client library. ParseError will be raised by any # network operation if Parse.init() has not been called. class ParseError < Exception end # An exception class raised when the REST API returns an error. # The error code and message will be parsed out of the HTTP response, # which is also included in the response attribute. class ParseProtocolError < ParseError attr_accessor :code attr_accessor :error attr_accessor :response def initialize(response) @response = response if response.body data = JSON.parse response.body @code = data["code"] @message = data["error"] end end end end