lib/vkontakte_api/error.rb in vkontakte_api-1.1 vs lib/vkontakte_api/error.rb in vkontakte_api-1.2
- old
+ new
@@ -2,10 +2,16 @@
# An exception raised by `VkontakteApi::Result` when given a response with an error.
class Error < StandardError
# An error code.
# @return [Fixnum]
attr_reader :error_code
+ # Captcha identifier (only for "Captcha needed" errors).
+ # @return [String]
+ attr_reader :captcha_sid
+ # Captcha image URL (only for "Captcha needed" errors).
+ # @return [String]
+ attr_reader :captcha_img
# An exception is initialized by the data from response mash.
# @param [Hash] data Error data.
def initialize(data)
@error_code = data.error_code
@@ -15,9 +21,12 @@
@method_name = request_params.delete('method')
@access_token = request_params.delete('access_token')
@oauth = request_params.delete('oauth')
@params = request_params
+
+ @captcha_sid = data.captcha_sid
+ @captcha_img = data.captcha_img
end
# A full description of the error.
# @return [String]
def message