Sha256: b580822e895044b5f390c0200caf67a074905d130431ad243c886c11ad59b7ef
Contents?: true
Size: 658 Bytes
Versions: 9
Compression:
Stored size: 658 Bytes
Contents
# frozen_string_literal: true 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. def initialize(klass, options) super( compose_message( "invalid_storage_options", { klass: klass, options: options } ) ) end end end end
Version data entries
9 entries across 9 versions & 1 rubygems