class Motion::RenderAborted

Public Class Methods

new(component) click to toggle source
Calls superclass method Motion::ComponentError::new
# File lib/motion/errors.rb, line 61
    def initialize(component)
      super(component, <<~MSG)
        Rendering #{component.class} was aborted by a callback.
      MSG
    end