class Roby::BacktraceFormatter
Attributes
backtrace[R]
Public Class Methods
new(exception, backtrace = exception.backtrace)
click to toggle source
# File lib/roby/exceptions.rb, line 427 def initialize(exception, backtrace = exception.backtrace) @exception = exception @backtrace = backtrace end
Public Instance Methods
full_message()
click to toggle source
# File lib/roby/exceptions.rb, line 431 def full_message @exception.full_message end
pretty_print(pp)
click to toggle source
# File lib/roby/exceptions.rb, line 435 def pretty_print(pp) Roby.pretty_print_backtrace(pp, backtrace) end