Sha256: ce3a2c5799a666d36d5427b49f02d962421f0f7cecc64f9c0483fd884721b27f
Contents?: true
Size: 742 Bytes
Versions: 105
Compression:
Stored size: 742 Bytes
Contents
# encoding: utf-8 module Mongoid module Errors # Raised when invalid options are passed to a relation macro. class InvalidOptions < MongoidError # Instantiate the options error. # # @example Create the error. # InvalidOptions.new(:name, :polymorphic, [ :as ]) # # @param [ Symbol ] name The name of the relation. # @param [ Symbol ] invalid The invalid option. # @param [ Array<Symbol> ] valid The allowed options. # # @since 2.1.0 def initialize(name, invalid, valid) super( compose_message( "invalid_options", { name: name, invalid: invalid, valid: valid.join(', ') } ) ) end end end end
Version data entries
105 entries across 100 versions & 7 rubygems