Sha256: 615f0e341d561040fd55eb133e65bd6fad600c4bcfca6fa8e74cac32418345fa
Contents?: true
Size: 555 Bytes
Versions: 25
Compression:
Stored size: 555 Bytes
Contents
# frozen_string_literal: true module Mongoid module Errors # This error is raised when defining a scope of an invalid type. class InvalidScope < MongoidError # Create the error. # # @example Create the error. # InvalidScope.new(Band, {}) # # @param [ Class ] klass The model class. # @param [ Object ] value The attempted scope value. def initialize(klass, value) super( compose_message("invalid_scope", { klass: klass, value: value }) ) end end end end
Version data entries
25 entries across 25 versions & 1 rubygems