Sha256: 2e465ba1e22ce5a10b0412376a52b5a5a534a794ca2d30ab9a65dafeec1471f8
Contents?: true
Size: 744 Bytes
Versions: 27
Compression:
Stored size: 744 Bytes
Contents
# frozen_string_literal: true # encoding: utf-8 module Mongoid module Errors # This error is raised when trying to instantiate a model object from the value in # the '_type' field of a document and the class doesn't exist. class UnknownModel < MongoidError # Create the new error. # # @example Instantiate the error. # UnknownModel.new('InvalidClass', "invalid_class") # # @param [ String ] klass The model class. # @param [ String ] value The value used to determine the (invalid) class. # # @since 7.0.0 def initialize(klass, value) super( compose_message("unknown_model", { klass: klass, value: value }) ) end end end end
Version data entries
27 entries across 27 versions & 2 rubygems