Raised when options provided to :store_in are invalid.
Create the new error.
@example Create the new error.
InvalidStorageOptions.new(:collection_name)
@param [ Class ] klass The model class. @param [ Hash, String, Symbol ] options The provided options.
@since 3.0.0
# File lib/mongoid/errors/invalid_storage_options.rb, line 16 def initialize(klass, options) super( compose_message( "invalid_storage_options", { klass: klass, options: options } ) ) end