Class: EvilEvents::Core::Events::EventExtensions::Hookable::OnErrorHook Private

Inherits:
AbstractHook
  • Object
show all
Defined in:
lib/evil_events/core/events/event_extensions/hookable/on_error_hook.rb

Overview

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Since:

  • 0.3.0

Instance Attribute Summary

Attributes inherited from AbstractHook

#callable

Instance Method Summary collapse

Methods inherited from AbstractHook

#initialize

Constructor Details

This class inherits a constructor from EvilEvents::Core::Events::EventExtensions::Hookable::AbstractHook

Instance Method Details

#call(event, error) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns void.

Parameters:

Returns:

  • void

Since:

  • 0.3.0



12
13
14
# File 'lib/evil_events/core/events/event_extensions/hookable/on_error_hook.rb', line 12

def call(event, error)
  callable.call(event, error)
end