Module: Roby::DRoby::V5::LocalizedErrorDumper
- Included in:
- LocalizedError
- Defined in:
- lib/roby/droby/v5/droby_dump.rb
Defined Under Namespace
Classes: DRoby
Instance Method Summary collapse
-
#droby_dump(peer) ⇒ Object
Returns an intermediate representation of
self
suitable to be sent to thedest
peer.
Instance Method Details
#droby_dump(peer) ⇒ Object
Returns an intermediate representation of self
suitable to be sent to the dest
peer.
109 110 111 112 113 114 115 116 117 118 |
# File 'lib/roby/droby/v5/droby_dump.rb', line 109 def droby_dump(peer) formatted = Roby.format_exception(self) DRoby.new(peer.dump_model(self.class), peer.dump(failure_point), fatal?, , backtrace, peer.dump(original_exceptions), formatted) end |