Sha256: 6e4def94072f81ef51e3f27145b81ca330e8736822c9e8a54613f2f603f19567
Contents?: true
Size: 653 Bytes
Versions: 105
Compression:
Stored size: 653 Bytes
Contents
# encoding: utf-8 module Mongoid module Errors # This error is raised when calling #save! or .create! on a model when one # of the callbacks returns false. class Callback < MongoidError # 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) super( compose_message("callbacks", { klass: klass, method: method }) ) end end end end
Version data entries
105 entries across 100 versions & 7 rubygems