[Source]
# File lib/rbot/ircbot.rb, line 34 34: def pretty_print(q) 35: q.group(1, "#<%s: %s" % [self.class, self.message], ">") { 36: if self.backtrace and not self.backtrace.empty? 37: q.text "\n" 38: q.seplist(self.backtrace, lambda { q.text "\n" } ) { |l| q.text l } 39: end 40: } 41: end
[Validate]