This question already has an answer here:
Sometimes I write code that is not perfect. I know that because my console sometimes looks like this:
Exception in thread "blahblahblah" java.lang.StackOverflowError
at java.lang.Thread.currentThread(Native Method)
at java.lang.ThreadLocal.get(ThreadLocal.java:124)
...
Naturally, when this happens, I rush to Google with search phrases like
getting a stack overflow when I call
foo()on aBar
As you might expect, this leads to search results like
baz — is Baz framework a good choice if I need to foo lots of bars? — Stack Overflow
and
bar — how to foo bars with regexes — Stack Overflow
How can I better search for stack overflow errors without just getting links to stackoverflow.com?
