Exception: Motion::RenderAborted

Inherits:
ComponentRenderingError show all
Defined in:
lib/motion/errors.rb

Instance Attribute Summary

Attributes inherited from ComponentError

#component

Instance Method Summary collapse

Constructor Details

#initialize(component) ⇒ RenderAborted

Returns a new instance of RenderAborted.



61
62
63
64
65
# File 'lib/motion/errors.rb', line 61

def initialize(component)
  super(component, <<~MSG)
    Rendering #{component.class} was aborted by a callback.
  MSG
end