Methods

Class/Module Index [+]

Quicksearch

Mongoid::Errors::Callback

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

Attributes

klass[R]
method[R]

Public Class Methods

new(klass, method) click to toggle source

Create the new callbacks error.

@example Create the new callbacks error.

Callbacks.new(Post, :create!)

@param [ Class ] klass The class of the document. @param [ Symbol ] method The name of the method.

@since 2.2.0

# File lib/mongoid/errors/callback.rb, line 19
def initialize(klass, method)
  @klass, @method = klass, method
  super(translate("callbacks", { :klass => klass, :method => method }))
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.