Skip to content

Instantly share code, notes, and snippets.

@rkh
Created May 26, 2011 07:23
Show Gist options
  • Save rkh/992712 to your computer and use it in GitHub Desktop.
Save rkh/992712 to your computer and use it in GitHub Desktop.
if defined? Maglev
Exception.install_debug_block do |e|
msg = e.instance_variable_get(:@_st_messageText)
case e.class.name
when 'RubyThrowException', 'Errno::ENOENT', 'LoadError', 'RubyBreakException'
# ignore
# when 'Exception'
# nil.pause if msg =~ /return from ensure swallowed an Exception/
else
puts "-- #{e} (#{e.class.name})"
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment