exception.backtrace â array
Instance Public methods
Returns any backtrace associated with the exception. The backtrace is an array of strings, each containing either âfilename:lineNo: in `method''' or âfilename:lineNo.''
1 2 3 4 5 6 7 8 9 10 11 12 13 | def a raise "boom" end def b a() end begin b() rescue => detail print detail.backtrace.join( "\n" ) end |
produces:
1 2 3 | prog.rb: 2 :in `a' prog.rb: 6 :in `b' prog.rb: 10 |
Please login to continue.