Sha256: 879ffa5594be6c8fef8749974cbcfd65ddf6a54bf635704f45a87de4bf91b226
Contents?: true
Size: 248 Bytes
Versions: 17
Compression:
Stored size: 248 Bytes
Contents
require 'iron_core/error' module IronCore class ResponseError < IronCore::Error def initialize(response) super(response.body) @response = response end def code return @response.code if @response end end end
Version data entries
17 entries across 17 versions & 1 rubygems