# File lib/ruote/exp/fe_participant.rb, line 218
    def handle_on_error(msg, err)

      r = trigger_callback(:on_error, msg, err)

      if r
        reply_to_parent(msg['workitem'])
        true # yes, we've dealt with the error.
      else
        super(msg, err)
      end
    end