Raised when invalid options are passed to a relation macro.
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
# File lib/mongoid/errors/invalid_options.rb, line 17 def initialize(name, invalid, valid) super( compose_message( "invalid_options", { name: name, invalid: invalid, valid: valid.join(', ') } ) ) end
Generated with the Darkfish Rdoc Generator 2.