Guest User

Untitled

a guest
Apr 25th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.98 KB | None | 0 0
  1. ~/NetBeansProjects/jruby ➔ jruby -X-C -e "class Foo; def foo; raise; end; def bar; foo; end; end; Foo.new.bar"
  2. org.jruby.exceptions.RaiseException:
  3. at org.jruby.exceptions.JumpException.originalFillInStackTrace(JumpException.java:103)
  4. at org.jruby.exceptions.RaiseException.fillInStackTrace(RaiseException.java:145)
  5. at java.lang.Throwable.<init>(Throwable.java:196)
  6. at java.lang.Exception.<init>(Exception.java:41)
  7. at java.lang.RuntimeException.<init>(RuntimeException.java:43)
  8. at org.jruby.exceptions.JumpException.<init>(JumpException.java:87)
  9. at org.jruby.exceptions.RaiseException.<init>(RaiseException.java:60)
  10. at org.jruby.RubyKernel.raise(RubyKernel.java:775)
  11. at org.jruby.RubyKernelInvoker$raise_s_method_0_3.call(Unknown Source)
  12. at org.jruby.internal.runtime.methods.DynamicMethod.call(DynamicMethod.java:70)
  13. at org.jruby.runtime.CallSite$InlineCachingCallSite.cacheAndCall(CallSite.java:116)
  14. at org.jruby.runtime.CallSite$InlineCachingCallSite.call(CallSite.java:270)
  15. at org.jruby.evaluator.ASTInterpreter.vcallNode(ASTInterpreter.java:1792)
  16. at org.jruby.evaluator.ASTInterpreter.evalInternal(ASTInterpreter.java:485)
  17. at Foo.foo(-e)
  18. at org.jruby.internal.runtime.methods.DefaultMethod.interpretedCall(DefaultMethod.java:197)
  19. at org.jruby.internal.runtime.methods.DefaultMethod.call(DefaultMethod.java:173)
  20. at org.jruby.internal.runtime.methods.DefaultMethod.call(DefaultMethod.java:261)
  21. at org.jruby.runtime.CallSite$InlineCachingCallSite.cacheAndCall(CallSite.java:116)
  22. at org.jruby.runtime.CallSite$InlineCachingCallSite.call(CallSite.java:270)
  23. at org.jruby.evaluator.ASTInterpreter.vcallNode(ASTInterpreter.java:1792)
  24. at org.jruby.evaluator.ASTInterpreter.evalInternal(ASTInterpreter.java:485)
  25. at Foo.bar(-e)
  26. at org.jruby.internal.runtime.methods.DefaultMethod.interpretedCall(DefaultMethod.java:197)
  27. at org.jruby.internal.runtime.methods.DefaultMethod.call(DefaultMethod.java:173)
  28. at org.jruby.internal.runtime.methods.DefaultMethod.call(DefaultMethod.java:240)
  29. at org.jruby.runtime.CallSite$InlineCachingCallSite.cacheAndCall(CallSite.java:101)
  30. at org.jruby.runtime.CallSite$InlineCachingCallSite.call(CallSite.java:238)
  31. at org.jruby.evaluator.ASTInterpreter.callNode(ASTInterpreter.java:682)
  32. at org.jruby.evaluator.ASTInterpreter.evalInternal(ASTInterpreter.java:309)
  33. at org.jruby.evaluator.ASTInterpreter.blockNode(ASTInterpreter.java:632)
  34. at org.jruby.evaluator.ASTInterpreter.evalInternal(ASTInterpreter.java:303)
  35. at org.jruby.evaluator.ASTInterpreter.rootNode(ASTInterpreter.java:1665)
  36. at org.jruby.evaluator.ASTInterpreter.evalInternal(ASTInterpreter.java:459)
  37. at org.jruby.evaluator.ASTInterpreter.eval(ASTInterpreter.java:169)
  38. at org.jruby.Ruby.runInterpreter(Ruby.java:529)
  39. at org.jruby.Ruby.runNormally(Ruby.java:435)
  40. at org.jruby.Ruby.runFromMain(Ruby.java:311)
  41. at org.jruby.Main.run(Main.java:144)
  42. at org.jruby.Main.run(Main.java:89)
  43. at org.jruby.Main.main(Main.java:80)
  44. -e:1:in `foo': unhandled exception
  45. from -e:1:in `bar'
  46. from -e:1
Add Comment
Please, Sign In to add comment