This error is raised when defining a scope of an invalid type.
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
# File lib/mongoid/errors/invalid_scope.rb, line 16 def initialize(klass, value) super( compose_message("invalid_scope", { klass: klass, value: value }) ) end