Top "Stack-trace" questions

A report of the active stack frames at a certain point in time during the execution of a program.

How can I convert a stack trace to a string?

What is the easiest way to convert the result of Throwable.getStackTrace() to a string that depicts the stacktrace?

java stack-trace tostring
How can I get the current stack trace in Java?

How do I get the current stack trace in Java, like how in .NET you can do Environment.StackTrace? I …

stack-trace java
What is a stack trace, and how can I use it to debug my application errors?

Sometimes when I run my application it gives me an error that looks like: Exception in thread "main" java.lang.…

java debugging stack-trace
How can I get a JavaScript stack trace when I throw an exception?

If I throw a JavaScript exception myself (eg, throw "AArrggg"), how can I get the stack trace (in Firebug or …

javascript stack-trace
How to automatically generate a stacktrace when my program crashes

I am working on Linux with the GCC compiler. When my C++ program crashes I would like it to automatically …

c++ gcc crash stack-trace assert
Official reasons for "Software caused connection abort: socket write error"

Given this stack trace snippet Caused by: java.net.SocketException: Software caused connection abort: socket write error  at java.net.…

java exception sockets tomcat stack-trace
How do I obtain crash-data from my Android application?

How can I get crash data (stack traces at least) from my Android application? At least when working on my …

android crash stack-trace
How do I find the caller of a method using stacktrace or reflection?

I need to find the caller of a method. Is it possible using stacktrace or reflection?

java stack-trace
How can I find the method that called the current method?

When logging in C#, how can I learn the name of the method that called the current method? I know …

c# .net logging stack-trace system.diagnostics
How to print a stack trace in Node.js?

Does anyone know how to print a stack trace in Node.js?

javascript node.js stack-trace