Tagged Questions
The nested-exceptions tag has no wiki summary.
9
votes
3answers
359 views
Should exceptions be chained in C++?
This may have been asked previously, but I search the stack and couldn't find any which really hit upon this.
I just finished work on a C++-program where I've implemented my own exceptions (although ...
4
votes
4answers
826 views
Best way to check whether a certain exception type was the cause (of a cause, etc …) in a nested exception?
I am writing some JUnit tests that verify that an exception of type MyCustomException is thrown. However, this exception is wrapped in other exceptions a number of times, e.g. in an ...
3
votes
5answers
2k views
Catching an exception that is nested into another exception
I want to catch an exception, that is nested into another exception.
I'm doing it currently this way:
} catch (RemoteAccessException e) {
if (e != null && e.getCause() != null ...
2
votes
1answer
188 views
How does this implementation of chaining exceptions work?
I previously asked a question about how to chaining exceptions in C++, and one of the answers provided a nifty solution to how it can be done. The problem is that I don't understand the code, and ...
0
votes
2answers
113 views
How Should I Move A File On Exception?
The requirement:
On an error (thrown exception), the file being processed should be moved to the folder for files with errors (app.config setting).
The problem:
The only way that I can of ...