Sha256: 6f168bda512b66282150215d0a973a5b2e435e5fe37e901a451244ad514fccfd
Contents?: true
Size: 704 Bytes
Versions: 27
Compression:
Stored size: 704 Bytes
Contents
# frozen_string_literal: true # 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
27 entries across 27 versions & 2 rubygems