Sha256: 83c46ffe72fbe8214a56ab7f8a6b69e8adb4b1f3e3d42c7e5d676ccd68e83d64
Contents?: true
Size: 343 Bytes
Versions: 16
Compression:
Stored size: 343 Bytes
Contents
class Embedly::BadResponseException < RuntimeError attr_accessor :response, :path def initialize(response, path = nil) @response ||= response @path ||= path end def message "Bad Response : #{@response.inspect} for path: #{@path.inspect}" end def inspect self.message end def to_s self.message end end
Version data entries
16 entries across 16 versions & 2 rubygems