Sha256: 6abff8f08ab8d6fd84b508e50a99936cab98477f2514142d68dba849b89d9900

Contents?: true

Size: 289 Bytes

Versions: 2

Compression:

Stored size: 289 Bytes

Contents

module Og
  
# This exception is thrown when a low level error happens 
# in the store. 

class StoreException < Exception
  attr_accessor :original_exception, :info

  def initialize(original_exception, info = nil)
    @original_exception, @info = original_exception, info
  end
end

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
og-0.41.0 lib/og/errors.rb
og-0.40.0 lib/og/errors.rb