Sha256: 7d0ba809258237307404fb9c8feb6c91a22e44ebd16cf3f2ed126c23d615eb8c

Contents?: true

Size: 216 Bytes

Versions: 66

Compression:

Stored size: 216 Bytes

Contents

module Cobrato
  class Exception < StandardError
    attr_accessor :code, :body

    def initialize(args = {})
      super(args[:message])
      @code     = args[:code]
      @body     = args[:body]
    end
  end
end

Version data entries

66 entries across 66 versions & 1 rubygems

Version Path
cobrato-client-0.2.4 lib/cobrato/exception.rb
cobrato-client-0.2.3 lib/cobrato/exception.rb
cobrato-client-0.2.3.pre lib/cobrato/exception.rb
cobrato-client-0.2.2 lib/cobrato/exception.rb
cobrato-client-0.2.1 lib/cobrato/exception.rb
cobrato-client-0.1.0 lib/cobrato/exception.rb