Sha256: 712d1fbfb6dd2ac2504722382d5ff54187cef7f63f7a2229b1548f63080aaf35
Contents?: true
Size: 266 Bytes
Versions: 1
Compression:
Stored size: 266 Bytes
Contents
# frozen_string_literal: true module Bitly module V4 # Error class. class Error < StandardError attr_reader :status def initialize(status, message) @status = status super("#{@status} - #{message}") end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
bitly-client-0.1.0 | lib/bitly/v4/error.rb |