Sha256: ab8bd55eff975e831c5c4cce7c128c2ce8f1b7053878f3e3ceba92fed903ebf6

Contents?: true

Size: 931 Bytes

Versions: 9

Compression:

Stored size: 931 Bytes

Contents

# frozen_string_literal: true
module ActiveMocker
  class BaseError < StandardError
  end
  class RecordNotFound < BaseError
  end

  module Mock
    # @deprecated
    RecordNotFound = ActiveMocker::RecordNotFound
  end

  class IdError < BaseError
  end

  # Raised when unknown attributes are supplied via mass assignment.
  class UnknownAttributeError < NoMethodError
    attr_reader :record, :attribute

    def initialize(record, attribute)
      @record    = record
      @attribute = attribute.to_s
      super("unknown attribute: #{attribute}")
    end
  end

  class UpdateMocksError < BaseError
    def initialize(name, mock_version, gem_version)
      super("#{name} was built with #{mock_version} but the gem version is #{gem_version}. Run `rake active_mocker:build` to update.")
    end
  end

  class NotImplementedError < BaseError
  end

  class Error < BaseError
  end

  class MockNotLoaded < BaseError
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
active_mocker-2.4.0.pre5 lib/active_mocker/mock/exceptions.rb
active_mocker-2.3.4 lib/active_mocker/mock/exceptions.rb
active_mocker-2.4.0.pre4 lib/active_mocker/mock/exceptions.rb
active_mocker-2.4.0.pre3 lib/active_mocker/mock/exceptions.rb
active_mocker-2.4.0.pre2 lib/active_mocker/mock/exceptions.rb
active_mocker-2.4.0.pre1 lib/active_mocker/mock/exceptions.rb
active_mocker-2.3.3 lib/active_mocker/mock/exceptions.rb
active_mocker-2.3.2 lib/active_mocker/mock/exceptions.rb
active_mocker-2.3.1 lib/active_mocker/mock/exceptions.rb