Sha256: b9461c89af5febf28d251f6a520a3aa6e22f50d345a96da7ba9389a3f93bc132
Contents?: true
Size: 724 Bytes
Versions: 178
Compression:
Stored size: 724 Bytes
Contents
# encoding: utf-8 module Mongoid #:nodoc module Errors #:nodoc # This error is raised when calling #save! or .create! on a model when one # of the callbacks returns false. class Callback < MongoidError attr_reader :klass, :method # 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 def initialize(klass, method) @klass, @method = klass, method super(translate("callbacks", { :klass => klass, :method => method })) end end end end
Version data entries
178 entries across 86 versions & 4 rubygems