Exception: Mongoid::Errors::Callback

Inherits:
MongoidError show all
Defined in:
lib/mongoid/errors/callback.rb

Overview

This error is raised when calling #save! or .create! on a model when one of the callbacks returns false.

Constant Summary

Constants inherited from MongoidError

MongoidError::BASE_KEY

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from MongoidError

#translate

Constructor Details

#initialize(klass, method) ⇒ Callback

Create the new callbacks error.

Examples:

Create the new callbacks error.

Callbacks.new(Post, :create!)

Parameters:

  • klass (Class)

    The class of the document.

  • method (Symbol)

    The name of the method.

Since:

  • 2.2.0



20
21
22
23
# File 'lib/mongoid/errors/callback.rb', line 20

def initialize(klass, method)
  @klass, @method = klass, method
  super(translate("callbacks", { :klass => klass, :method => method }))
end

Instance Attribute Details

#klassObject (readonly)

Returns the value of attribute klass.



9
10
11
# File 'lib/mongoid/errors/callback.rb', line 9

def klass
  @klass
end

#methodObject (readonly)

Returns the value of attribute method.



9
10
11
# File 'lib/mongoid/errors/callback.rb', line 9

def method
  @method
end