Exception: Mongoid::Errors::InvalidIndex

Inherits:
MongoidError
  • Object
show all
Defined in:
lib/mongoid/errors/invalid_index.rb

Overview

Raised when an invalid index is defined.

Constant Summary

Constant Summary

Constants inherited from MongoidError

MongoidError::BASE_KEY

Instance Method Summary (collapse)

Methods inherited from MongoidError

#compose_message, #problem, #resolution, #summary, #translate

Constructor Details

- (InvalidIndex) initialize(klass, spec)

Create the new error.

Examples:

Create the error.

InvalidIndex.new(Band, name: 1)

Parameters:

  • klass (Class)

    The model class.

  • spec (Hash)

    The invalid specification.

Since:

  • 3.0.0



17
18
19
20
21
22
23
24
# File 'lib/mongoid/errors/invalid_index.rb', line 17

def initialize(klass, spec)
  super(
    compose_message(
      "invalid_index",
      { klass: klass.name, spec: spec }
    )
  )
end