Sha256: bf7470411db2e9e740506d8811b7ae84dd5d95eae16d87e77246628fac3ef05e
Contents?: true
Size: 674 Bytes
Versions: 66
Compression:
Stored size: 674 Bytes
Contents
# encoding: utf-8 module Mongoid module Errors # Raised when options provided to :store_in are invalid. class InvalidStorageOptions < MongoidError # Create the new error. # # @example Create the new error. # InvalidStorageOptions.new(Person, invalid_option: 'name') # # @param [ Class ] klass The model class. # @param [ Hash, String, Symbol ] options The provided options. # # @since 3.0.0 def initialize(klass, options) super( compose_message( "invalid_storage_options", { klass: klass, options: options } ) ) end end end end
Version data entries
66 entries across 61 versions & 3 rubygems