module Roby::DRoby::V5::LocalizedErrorDumper
Public Instance Methods
droby_dump(peer)
click to toggle source
Returns an intermediate representation of self
suitable to be sent to the dest
peer.
# File lib/roby/droby/v5/droby_dump.rb, line 105 def droby_dump(peer) formatted = Roby.format_exception(self) DRoby.new(peer.dump_model(self.class), peer.dump(failure_point), fatal?, message, backtrace, peer.dump(original_exceptions), formatted) end