Sha256: e734501f3b5d082f0f7498ff407081109e5988704fb2cdccc3e9e89cc2c028f6

Contents?: true

Size: 374 Bytes

Versions: 7

Compression:

Stored size: 374 Bytes

Contents

# frozen_string_literal: true

module Gecko
  module Record
    # Generic Gecko::Record exception class.
    class BaseError < StandardError
    end

    # Raise when a record can not be found via API
    class RecordNotFound < BaseError
    end

    # Raised when a record can not be found in the Identity Map
    class RecordNotInIdentityMap < BaseError
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
gecko-ruby-0.12.3 lib/gecko/record/exceptions.rb
gecko-ruby-0.12.2 lib/gecko/record/exceptions.rb
gecko-ruby-0.12.1 lib/gecko/record/exceptions.rb
gecko-ruby-0.12.0 lib/gecko/record/exceptions.rb
gecko-ruby-0.11.1 lib/gecko/record/exceptions.rb
gecko-ruby-0.11.0 lib/gecko/record/exceptions.rb
gecko-ruby-0.10.0 lib/gecko/record/exceptions.rb