Sha256: 42c242b092714b8a2ea5aa17279451da56947a1002a6f90f53f6a0b8a92cb157

Contents?: true

Size: 327 Bytes

Versions: 9

Compression:

Stored size: 327 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

# * George Moschovitis <gm@navel.gr>

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
og-0.23.0 lib/og/errors.rb
og-0.24.0 lib/og/errors.rb
og-0.27.0 lib/og/errors.rb
og-0.29.0 lib/og/errors.rb
og-0.25.0 lib/og/errors.rb
og-0.26.0 lib/og/errors.rb
og-0.28.0 lib/og/errors.rb
og-0.30.0 lib/og/errors.rb
og-0.31.0 lib/og/errors.rb