class Mongoid::Errors::InvalidScope

This error is raised when defining a scope of an invalid type.

Public Class Methods

new(klass, value) click to toggle source

Create the error.

@example Create the error.

InvalidScope.new(Band, {})

@param [ Class ] klass The model class. @param [ Object ] value The attempted scope value.

@since 3.0.0

Calls superclass method
# File lib/mongoid/errors/invalid_scope.rb, line 19
def initialize(klass, value)
  super(
    compose_message("invalid_scope", { klass: klass, value: value })
  )
end