26
votes
27answers
2k views
Why should exceptions be used conservatively?
Possible Duplicate:
Why is exception handling bad?
I often see/hear people say that exceptions should only be used rarely, but never explain why. While that may be true, rationale is normally …
10
votes
3answers
359 views
Proper way to declare custom exceptions in modern Python?
What's the proper way to declare custom exception classes in modern Python? My primary goal is to follow whatever standard other exception classes have, so that (for instance) any extra string I …
8
votes
11answers
322 views
Best exception for an invalid generic type argument
I'm currently writing some code for UnconstrainedMelody which has generic methods to do with enums.
Now, I have a static class with a bunch of methods which are only meant to be used with "flags" …
7
votes
6answers
234 views
Python: How can I know which exceptions might be thrown from a method call
Is there a way knowing (at coding time) which exceptions to expect when executing python code?
I end up catching the base Exception class 90% of the time since I don't know which exception type might …
7
votes
3answers
301 views
Silent failures in C#, seemingly unhandled exceptions that does not crash the program
hi,
have no idea what didn't you understand here:
http://stackoverflow.com/questions/1583124/what-is-the-origin-or-the-reason-or-silent-failures-closed
but i'm sorry anyway. i'll try to explain it …
6
votes
8answers
243 views
Should I force exceptions to test them ?
i have this method in my data access class and i have a unit test to make sure it does work properly, but my test doesn't test the exception so my question is should i create a new test to force the …
5
votes
8answers
223 views
Java Exceptions, What to catch and what not to?
I keep getting the dreaded java.something.someException errors while running my java app. and I don't seem to be getting the hang of what exceptions to handle and what not to?
When I read the api docs …
5
votes
2answers
210 views
What is the difference between throw and throw with arg of caught exception?
Imagine two similar pieces of code:
try {
[...]
} catch (myErr &err) {
err.append("More info added to error...");
throw err;
}
and
try {
[...]
} catch (myErr &err) {
…
4
votes
7answers
225 views
In what ways do C++ exceptions slow down code when there are no exceptions thown?
I have read that there is some overhead to using C++ exceptions for exception handling as opposed to, say, checking return values. I'm only talking about overhead that is incurred when no exception is …
4
votes
2answers
70 views
.NET PInvoke Exception Handling
What exceptions can occur when using PInvoke or are all errors handled by the method return values and it is up to the developer to check and raise exceptions if needed?
4
votes
1answer
168 views
Floating point stack handling with floating-point exceptions turned on
I'm running into an issue with floating point exceptions turned on in Visual Studio 2005. If I have code like this:
double d = 0.0;
double d2 = 3.0;
double d3 = d2/d;
and if I register an SEH …
3
votes
3answers
84 views
How do you catch a thrown soap exception from a web service?
I throw a few soap exceptions in my web service successfully. I would like to catch the exceptions and access the string and ClientFaultCode that are called with the exception. Here is an example of …
3
votes
10answers
254 views
Is there really a performance hit when catching exceptions
edit: Someone had added the C# keyword. I am NOT talking about C#. just exception in general. Specific in compiled languages like C++ and D, C# was also in my mind.
I asked a question about …
3
votes
2answers
92 views
When an operation needs to pass more than just the result, do you tuple/throw/or getContextual?
I’m trying to refactor some “sending out an email” code by dividing the steps (validate, attach related content, format, send) into separate classes that can be more easily tested, logged, and …
3
votes
5answers
128 views
Visual Studio debugging - ignore exception in one place while breaking at it elsewhere?
I have some code which generates a large quantity of ArgumentExceptions on one particular line (which is in a different developer's code, so I can't just change it), which are then caught and handled …
