Skip to content

Instantly share code, notes, and snippets.

@steve9001
Created August 13, 2013 17:17
Show Gist options
  • Save steve9001/6223398 to your computer and use it in GitHub Desktop.
Save steve9001/6223398 to your computer and use it in GitHub Desktop.
Exception#pretty
class Exception
def pretty
%|\n#{self.class} (#{self.message}):\n #{backtrace.join("\n ")}\ n|
rescue Exception => e
"error in Exception#pretty: #{e}"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment