Sha256: cc7ad5c6f0c17178f89a3b4b369d87ca4b620cc57b064f27e960b338861d59b7
Contents?: true
Size: 930 Bytes
Versions: 2
Compression:
Stored size: 930 Bytes
Contents
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 < StandardError #Exception ... why? A:http://www.skorks.com/2009/09/ruby-exceptions-and-exception-handling/ 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 @code = response["code"] @error = response["error"] end super("#{@code}: #{@error}") end def to_s @message || super end def message=(msg) @message = msg end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
parse-ruby-client-0.2.0 | lib/parse/error.rb |
parse-ruby-client-0.1.15 | lib/parse/error.rb |