Tagged Questions

24
votes
3answers
11k views

C++ display stack trace on exception

I want to have a way to report the stack trace to the user if an exception is thrown. What is the best way to do this? Does it take huge amounts of extra code? To answer questions: I'd like it to be ...
18
votes
5answers
17k views

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.SocketOutputStream.socketWrite0(Native Method) ...
18
votes
5answers
6k views

How do I get ruby to print a full backtrace instead of a truncated one?

When I get exceptions, it is often from deep within the call stack. When this happens, more often than not, the actual offending line of code is hidden from me: tmp.rb:7:in `t': undefined method ...
16
votes
5answers
2k views

Hooking a Stacktrace in Delphi 2009

The Exception class in Delphi 2009 received a number of new features. A number of them are related to getting a stacktrace: property StackTrace: string *read* GetStackTrace; property StackInfo: ...
15
votes
6answers
4k views

Is there a way to dump a stack trace without throwing an exception in java?

I am thinking of creating a debug tool for my Java application. I am wondering if it is possible to get a stack trace, just like Exception.printStackTrace() but without actually throwing an ...
11
votes
2answers
894 views

How can I rethrow an exception in Javascript, but preserve the stack?

In Javascript, suppose I want to perform some cleanup when an exception happens, but let the exception continue to propagate up the stack, eg: try { enterAwesomeMode(); doRiskyStuff(); // might ...
10
votes
3answers
4k views

Python When I catch an exception, how do I get the type, file, and line number?

Catching an exception that would print like this: Traceback (most recent call last): File "c:/tmp.py", line 1, in <module> 4 / 0 ZeroDivisionError: integer division or modulo by zero I ...
8
votes
7answers
5k views

C# equivalent to Java's Exception.printStackTrace()?

Is there a C# equivalent method to Java's Exception.printStackTrace() or do I have to write something myself, working my way through the InnerExceptions?
7
votes
5answers
2k views

(Unknown Source) in Exception stack trace

Background This question is related to Why does String.valueOf(null) throw a NullPointerException? Consider the following snippet: public class StringValueOfNull { public static void ...
7
votes
1answer
546 views

What do the numbers in stack trace mean?

How can I use the numbers in the stacktrace? What do these mean? In eclipse I get often exceptions, for example a NullPointerException: java.lang.NullPointerException at ...
7
votes
7answers
2k views

How can I rethrow an Inner Exception while maintaining the stack trace generated so far?

Duplicate of: http://stackoverflow.com/questions/57383/in-c-how-can-i-rethrow-innerexception-without-losing-stack-trace I have some operations that I invoke asynchronously on a background thread. ...
7
votes
4answers
3k views

Can I get detailed exception stacktrace in PowerShell?

Runing such script: 1: function foo() 2: { 3: bar 4: } 5: 6: function bar() 7: { 8: throw "test" 9: } 10: 11: foo I see test At C:\test.ps1:8 char:10 Can I get a detailed stack ...
6
votes
3answers
274 views

Tool to extract java stack traces from log files

Is there any tool that can extract a list of stack traces appearing in the log file and probably count unique ones? EDIT: I would preffer something that is not GUI-based and be run on the background ...
6
votes
3answers
299 views

what can lead throw to reset a callstack (I'm using “throw”, not “throw ex”)

I've always thought the difference between "throw" and "throw ex" was that throw alone wasn't resetting the stacktrace of the exception. Unfortunately, that's not the behavior I'm experiencing ; here ...
6
votes
3answers
625 views

What does this mean in a stack trace?

I see this in a stack trace: myorg.vignettemodules.customregistration.NewsCategoryVAPDAO.getEmailContentByID(I)Lmyorg/pushemail/model/EmailContent; What does the "(I)L" mean?
5
votes
1answer
991 views

How to get the Stack trace when logging exceptions with NLog?

When I use the default layout with NLog it only prints the name of the exception. I've been told that the log4jxmlevent layout doesn't prints nothing about the exception. What layout will help me? ...
5
votes
4answers
1k views

GetStackTrace in Delphi 7?

Using Delphi 7, how can I get a string representing the stack-trace from an Exception? try SomethingDodgy(); except on E:Exception do begin // print stack trace Log.Write(/* ??? */); ...
5
votes
9answers
1k views

How do I throw an Exception from the caller's scope?

I'd like to create a routine that does some logging, takes some other actions, and then throws an Exception. I'd like this routine to be called from many different locations. However, creating ...
4
votes
4answers
964 views

Delphi 6 stack trace [closed]

Possible Duplicate: GetStackTrace in Delphi 7? Does anyone know how to get a nice friendly stack trace into a string when an exception is raised in Delphi 6?
4
votes
5answers
937 views

Find module name of the originating exception in Python

Example: >>> try: ... myapp.foo.doSomething() ... except Exception, e: ... print 'Thrown from:', modname(e) Thrown from: myapp.util.url In the above example, the exception was ...
3
votes
1answer
362 views

exception call stack truncated without any re-throwing

I have an unusual case where I have a very simple Exception getting thrown and caught in the same method. It isn’t re-thrown (the usual kind of problem naïve programmers have). And yet its ...
3
votes
2answers
1k views

How to get line number(s) in the StackTrace of an exception thrown in .NET to show up

MSDN says this about the StackTrace property of the Exception class: The StackTrace property holds a stack trace, which you can use to determine where in the code the error occurred. ...
3
votes
2answers
570 views

Get the method parameters from the throwing method in C#

I have a nasty exception that seems to occure deep inside the DataGridView Code. I have a class that inherits from BindingList which is the DataSource of a BindingSource which is the DataSoure of a ...
3
votes
2answers
293 views

Why are the names of generic types mangled in a .NET stack trace?

I have an exception being thrown from a C# method, that takes a generic list as a paremeter. private static void DoWork(List<ClassName> a) { } When it throws an exception, the stack trace ...
3
votes
3answers
890 views

correctly printstacktrace of servlet exception

so i am using a filter to catch servlet exception (because we are using a mix of jsf/plain servlets) when catching the ServletException and calling printstacktrace most of the information is lost. ...
2
votes
1answer
86 views

Incorrect stack trace in core by uncaught std::exception

There is my code: #include <string> #include <tr1/functional> using namespace std; using namespace std::tr1; using namespace std::tr1::placeholders; class Event { public: typedef ...
2
votes
1answer
90 views

log4j truncates stacktrace

I'm having a problem printing the stacktrace to my log file. Log4j.properties: log4j.appender.file=org.apache.log4j.RollingFileAppender log4j.appender.file.File=/var/log/app/application.log ...
2
votes
2answers
154 views

Printing stack traces

I have a very short test file: let print_backtrace () = try raise Not_found with Not_found -> Printexc.print_backtrace stdout;; let f () = print_backtrace (); Printf.printf "this is to make f ...
2
votes
2answers
127 views

calling method from 1st line in stacktrace: “MyClass.java:1”

In my project I'm using log4j to log errors and many frameworks: AOP, spring etc. What does it mean when I have in my stacktrace that calling was in 1st line, e.g: com.foo.bar.MyException: Error ...
2
votes
1answer
164 views

Sensitive information in Stack Trace

I am wanting to discover what possible standard .net exceptions can cause stack traces to include sensitive information. It is my understanding (correct me if I am wrong) that if a SQL connection ...
2
votes
2answers
482 views

How to print exception stack trace of Objective-C exceptions with GNU runtime and without GNUStep?

I have an Objective-C app build on Linux with GCC 4.3 using no specific framework (only GNU-runtime). I am using Objective-C exceptions (via the '-fobjc-exceptions' compiler flag). Now I want to ...
2
votes
2answers
368 views

How to obtain the native stacktrace from native exceptions caught in managed code

I have some managed code that calls to a method inside some native DLL(i have the appropriate symbol files). Sometimes, that native method throws an exception which I catch in my managed code. ...
2
votes
3answers
121 views

Is it possible to extract some structured information from the Exception.StackTrace?

I was wondering if it's possible to convert the string StackTrace in the exception to a more structured data object? Or is there a method that can get me this information while I am catching the ...
2
votes
3answers
2k views

Why does my servlet stacktrace show “Unknown Source” for my classes?

I'm currently using Apache Tomcat 5.5.16 to serve a Lucene-based search API. Lately I've been having some NullPointerExceptions inside my servlet class. The class is called ...
1
vote
2answers
76 views

Re-raise Python exception and preserve stack trace

I'm trying to catch an exception in a thread and re-raise it in the main thread: import threading import sys class FailingThread(threading.Thread): def run(self): try: raise ...
1
vote
2answers
67 views

How to return stack Trace to Client in MULE..?

Does anybody know how to print full stack trace on the Browser, when a Runtime Exception occurs in MULE..?? When a runtime Exception occurs, MULE throws a 500 Server Error to the client , but shows ...
1
vote
3answers
88 views

How do I know what the exception is in Eclipse, Android SDK?

I'm a total newbie, trying to create a simple app for android. The biggest annoyance so far is that I just cannot see what the heck happened if there is an exception. In Visual Studio if an exception ...
1
vote
0answers
601 views

IllegalStateException: Can not perform this action after onSaveInstanceState - How to prevent?

I'm getting user reports from my app in the market, delivering the following exception: java.lang.IllegalStateException: Can not perform this action after onSaveInstanceState at ...
1
vote
0answers
31 views

Are there any alternatives to IL offsets to get more context in a stack trace in Silverlight?

I understand the decision not to include PDB's in a XAP file. This of course means no line numbers in an exception stack trace. Others have looked for this, and we can get IL offsets to hunt things ...
1
vote
1answer
527 views

Objective C Exception thrown in main method

I set an exception breakpoint after my app continued crashing before it would execute any of my code. I don't know what's wrong. I printed out the stack trace, but the only decipherable portion of the ...
1
vote
2answers
164 views

Stackdump in C++ not showing the stack trace

I have an app that crashes sometimes and creates the next file: (APP.exe.stackdump) Exception: STATUS_ACCESS_VIOLATION at eip=6BA4B246 eax=67452301 ebx=EFCDAB89 ecx=98BADCFE edx=10325476 esi=FFFFFFFF ...
1
vote
5answers
297 views

C#: Getting the Exception object in a try..catch to include FULL stacktrace, currently its truncated

can anyone help? I am trying to get the full stacktrace when within a catch of try..catch. Currently its truncated to include only the current method where the error is.... Let me explain.. ...
1
vote
4answers
373 views

Wrong line number on stacktrace exception

I've got some code which errors and I'm using the stacktrace to find out what the line number is but it seems to be giving me the wrong number Here's my code Try Dim query As String = "Select * ...
1
vote
3answers
229 views

How can we take minidump during exceptions

I am working on a sub project(.NET) which deals with exceptions. Below is my requirement When an exception occurs, the exception assembly must capture CPU information Method which caused the issue ...
1
vote
0answers
90 views

Why I do not get line numbers in exception stack trace if I have PDB and symbols loaded?

I have a solution with several projects. The solution is in Release mode with no optimization and with pdb files generated. While running Unit Tests i get exceptions but the stack trace does not ...
1
vote
1answer
50 views

Which order does getTrace return calls?

Probably a trivial question, but in which order does Exception::getTrace return calls? Most recent first or last? I'd like to know before I implement my error handler. BenTheDesigner
1
vote
1answer
141 views

Locate modules by stack address

I have a Winodws Mobile 6.1 application running on an ARMV4I processor. Given a stack address (from unwinding an exception), I like to determine what module owns that address. Using the ToolHelpAPI, ...
1
vote
3answers
1k views

Get stack trace from uncaught exception?

I realise this will be platform specific: is there any way to get a stack trace from an uncaught C++ exception, but from the point at which the exception is thrown? I have a Windows Structured ...
1
vote
2answers
374 views

StackTrace from Exception on different thread?

There is a constructor on StackTrace that takes an exeption as an argument. All fine and well, but I noticed that all the other constructors say that it will get the StackTrace from the current ...
1
vote
4answers
124 views

Locating (file/line) the invocation of a constructor in python

I'm implementing a event system: Various pieces of code will post events to a central place where they will be distributed to all listeners. The main problem with this approach: When an exception ...

1 2