Sha256: f2848bb4d945fa691bbc403ce4f7964f9fef0bfe3db24d3a188d6895b488446a
Contents?: true
Size: 673 Bytes
Versions: 105
Compression:
Stored size: 673 Bytes
Contents
# encoding: utf-8 module Mongoid module Errors # Raised when an invalid index is defined. class InvalidIndex < MongoidError # Create the new error. # # @example Create the error. # InvalidIndex.new(Band, name: 1) # # @param [ Class ] klass The model class. # @param [ Hash ] spec The invalid specification. # @param [ Hash ] options The invalid options. # # @since 3.0.0 def initialize(klass, spec, options) super( compose_message( "invalid_index", { klass: klass.name, spec: spec, options: options } ) ) end end end end
Version data entries
105 entries across 100 versions & 7 rubygems