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 ...
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 ...
11
votes
4answers
4k views

How can you programmatically inspect the stack trace of an exception in Python?

When an exception occurs in Python, can you inspect the stack? Can you determine its depth? I've looked at the traceback module, but I can't figure out how to use it. My goal is to catch any ...
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 ...
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. ...
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
2answers
2k views

c++ stack trace from unhandled exception?

This question has been asked before and there have been windows-specific answers but no satisfactory gcc answer. I can use set_terminate() to set a function that will be called (in place of ...
4
votes
2answers
1k views

How to print full stack trace?

for example //---------------a try { // some network call } catch(WebException we) { throw new MyCustomException("some message ....", we); } In another ...
3
votes
1answer
237 views

c++ stacktrace from the function an exception is thrown?

I can make use of gcc's backtrace to obtain a stack trace at any given point of a program, but I would like to obtain the trace from whatever frame the stack was in at the time an exception is thrown, ...
3
votes
4answers
501 views

How to rethrow the inner exception of a TargetInvocationException without losing the stack trace

I have many methods which are calling using Delegate.DynamicInvoke. Some of these methods make database calls and I would like to have the ability to catch a SqlException and not catch the ...
3
votes
1answer
174 views

How do I get the stack trace from an Exception Object in Python?

How can I get the full stack trace from the Exception object itself? Consider the following code as reduced example of the problem: last_exception = None try: raise Exception('foo failed') ...
3
votes
4answers
3k views

How to throw exception without resetting stack trace?

This is a follow-up question to Is there a difference between “throw” and “throw ex”? is there a way to extract a new error handling method without resetting the stack trace? [EDIT] I will be trying ...
2
votes
5answers
106 views

If I throw an exception in a getter of a property, can I obtain the name of the property in a catch block?

If I throw an exception from a getter of a property, is it possible to obtain the name of the property in the catch block where I have called that property -like using reflection or reading the ...
2
votes
2answers
412 views

Struts2 error handling - exception stack not found

I've encountered a strange thing. I have configured exception handling in struts 2.1.8 like stated here, only that I redirect to an action instead to JSP (to send emails...). So, in the action I have ...
1
vote
1answer
97 views

Exception rethrown at [0]:

I'm investigating a stack trace, and I came accross this output: Server stack trace: ... at MyProject.Data.Notifications.NotificationCache.InitialisedCache() in NotificationCache.cs: line 72 ...
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.. ...
0
votes
1answer
39 views

Raise error with only last line of stack trace

It seems to me that commonly you may want a Python program to print (usually to standard error) only the last line of the stack trace, e.g.: IOError: Error reading file 'b'plunk'': b'failed to load ...
0
votes
3answers
57 views

Why Program.Main does not appear in the crash stack

everyone I am writing a C# application that handles all uncaught exceptions in the main routine: static void Main() { try { Application.EnableVisualStyles(); ...
0
votes
2answers
324 views

Oracle PL/SQL: how to get the stack trace, package name and procedure name

Sometimes the exception returns something like: "ORA-06502: PL/SQL: numeric or value error: character string buffer too small". It's not so readable since it doesn't report neither the table, the ...
0
votes
2answers
439 views

terminate called after throwing an instance of 'std::string'

I have this binary thats crashing by throwing an exception of type std:string. Stack trace from a stripped binary: terminate called after throwing an instance of 'std::string' *** Aborted at ...
0
votes
4answers
158 views

Throwing exceptions so that stack trace doesn't contain certain class types

Is it possible to do this ? The problem is, that huge applications have tons of servlet filters for instance. And each exception that is thrown regarding http request contains 250 lines when 160 of ...
0
votes
1answer
230 views

custom (non-exception) error handling strategy in c++

What error handling schemes people use in c++ when its necessary, for X or Y reason, to avoid exceptions? I've implemented my own strategy, but i want to know what other people have come up with, and ...