Sha256: 04b5464e352a540bd811b0ddd78e97ff667469b5e55ede2026fd8437c86e5401
Contents?: true
Size: 684 Bytes
Versions: 27
Compression:
Stored size: 684 Bytes
Contents
# frozen_string_literal: true # 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
27 entries across 27 versions & 2 rubygems