Skip to content

Instantly share code, notes, and snippets.

@headius
Created August 1, 2008 00:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save headius/3550 to your computer and use it in GitHub Desktop.
Save headius/3550 to your computer and use it in GitHub Desktop.
## unfiltered
~/NetBeansProjects/jruby ➔ jruby -e "def foo; raise; end; foo"
-e:1:in method__0$RUBY$foo: unhandled exception
from ruby/__dash_e__Invokermethod__0$RUBY$fooFixed0.gen:-1:in call
from CompiledMethod.java:216:in call
from CallSite.java:123:in cacheAndCall
from CallSite.java:333:in call
from -e:1:in __file__
from -e:-1:in __file__
from -e:-1:in load
from Ruby.java:542:in runScript
from Ruby.java:455:in runNormally
from Ruby.java:328:in runFromMain
from Main.java:194:in run
from Main.java:91:in run
from Main.java:82:in main
## filtered
~/NetBeansProjects/jruby ➔ jruby -e "def foo; raise; end; foo"
-e:1:in method__0$RUBY$foo: unhandled exception
from ruby/__dash_e__Invokermethod__0$RUBY$fooFixed0.gen:-1:in call
from -e:1:in __file__
from -e:-1:in __file__
from -e:-1:in load
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment