Exception handling is a programming language construct or computer hardware mechanism designed to handle the occurrence of exceptions, special conditions that change the normal flow of program execution.
154
votes
10answers
5k views
Why should I not wrap every block in “try”-“catch”?
I have always been of the belief that if a method can throw an exception then it is reckless not to protect this call with a meaningful try block.
I just posted 'You should ALWAYS wrap calls that can ...
68
votes
12answers
15k views
Why catch and rethrow Exception in C#?
Folks, forgive me, I'm pretty much a raw prawn when it comes to C#, and .NET generally... though I've been a professional programmer for 10 years.
I'm looking at this article: ...
67
votes
16answers
7k views
How slow are Java exceptions?
Question: Is exception handling in Java actually slow?
Conventional wisdom, as well as a lot of Google results, says that exceptional logic shouldn't be used for normal program flow in Java. Two ...
57
votes
12answers
2k views
Is it abusive to use IDisposable and “using” as a means for getting “scoped behavior” for exception safety?
Something I often used back in C++ was letting a class A handle a state entry and exit condition for another class B, via the A constructor and destructor, to make sure that if something in that scope ...
57
votes
14answers
24k views
Best Practice for Exception Handling in a Windows Forms Application?
I'm currently in the process of writing my first Windows Forms application. I've read a few C# books now so I've got a relatively good understanding of what language features C# has to deal with ...
50
votes
9answers
16k views
What is the proper way to re-throw an exception in C#?
Duplicate: http://stackoverflow.com/questions/22623/net-throwing-exceptions-best-practices
I have a question for you that stems from my partner doing things a different way than I do.
Is it better ...
47
votes
15answers
6k views
I've caught an exception!! Now what?
I've started using try catch blocks (bit late i know!) but now im not sure what to do with the exception once i've caught it. What do people usually do here?
-- Jonesy
Try
...
45
votes
5answers
9k views
Elmah not working with asp.net site
I've tried to use elmah with my asp.net site but whenever I try to go to http://localhost:port/elmah.axd I get resource not found exception. My web.config is given below.
<?xml ...
45
votes
19answers
9k views
Why is try {…} finally {…} good; try {…} catch{} bad?
I have seen people say that it is bad form to use catch with no arguments, especially if that catch doesn't do anything:
StreamReader reader=new StreamReader("myfile.txt");
try
{
int i = 5 / 0;
}
...
42
votes
4answers
14k views
Globally catch exceptions in a WPF application?
We are having a WPF application where parts of it may throw exceptions at runtime. I'd like to globally catch any unhandled exception and log them, but otherwise continue program execution as if ...
40
votes
18answers
5k views
Why are empty catch blocks a bad idea?
I've just seen a question on try-catch, which people (including Jon Skeet) say empty catch blocks are a really bad idea? Why this? Is there no situation where an empty catch is not a wrong design ...
39
votes
27answers
12k views
NotImplementedException - are they kidding me?
This really, really urks me, so I hope that someone can give me a reasonable justification for why things are as they are.
NotImplementedException. You are pulling my leg, right?
No, I'm not going ...
34
votes
21answers
1k views
Is it okay that I sometimes sink my exceptions?
I have a best practices question. I realize this is subjective but wanted to ask people smarter than me if this is a common programming practice.
If you have a method of something NON-CRITICAL that ...
33
votes
7answers
1k views
Why does C# allow you to 'throw null'?
While writing some particularly complex exception handling code, someone asked, don't you need to make sure that your exception object isn't null? And I said, of course not, but then decided to try ...
33
votes
14answers
1k views
How defensively should I program?
i was working with a small routine that is used to create a database connection:
Before
public DbConnection GetConnection(String connectionName)
{
ConnectionStringSettings cs= ...
31
votes
5answers
10k views
WPF global exception handler
sometimes, under not reproducible circumstances, my WPF application crashes without any message. The application simply close instantly.
Where is the best place to implement the global Try/Catch ...
30
votes
9answers
988 views
Does exception handling require object-oriented programming?
At this point in my programming experience, I realize how spoiled I am to have exception handling available in most languages being used today (C++, .Net, Java, etc), at least in comparison to C. I ...
29
votes
14answers
2k views
Common programming mistakes in .Net when handling exceptions?
What are some of the most common mistakes you've seen made when handling exceptions?
It seems like exception handling can be one of the hardest things to learn how to do "right" in .Net. Especially ...
29
votes
12answers
4k views
Should I inherit from std::exception?
I've seen at least one reliable source (a C++ class I took) recommend that application-specific exception classes in C++ should inherit from std::exception. I'm not clear on the benefits of this ...
27
votes
12answers
788 views
Is there a general consensus in the C++ community on when exceptions should be used?
I just spent a few hours reading through SO questions on the topic of when to use exceptions, and it seems like there are two camps with different point of views:
Use exceptions over error codes
Use ...
27
votes
2answers
7k views
How to use rspec's should_raise with any kind of exception?
I'd like to do something like this:
some_method.should_raise <any kind of exception, I don't care>
How should I do this?
some_method.should_raise exception
... doesn't work.
27
votes
3answers
2k views
Why can't I catch a generic exception in C#?
I was doing some unit testing on code that could throw a number of exceptions depending on the inputs. So I tried something like the below code: (simplified for the example)
static void ...
27
votes
9answers
9k views
Why use finally in C#?
Whatever is inside finally blocks is executed (almost) always, so what's the difference between enclosing code into it or leaving it unclosed?
26
votes
4answers
4k views
What's the difference between Application.ThreadException and AppDomain.CurrentDomain.UnhandledException?
Alright, this is an easy one:
What's the difference between Application.ThreadException and AppDomain.CurrentDomain.UnhandledException?
Do I need to handle both?
Thanks!
26
votes
13answers
4k views
C++: do you (really) write exception safe code?
Exception handling (EH) seems to be the current standard, and by searching the web, I can not find any novel ideas or methods that try to improve or replace it (well, some variations exist, but ...
25
votes
4answers
517 views
How to fix NPE in ViewRoot#updateBidiOptions?
In the developer console on the Android market we are getting a lot of stack traces like this (sent in by users when our app crashes):
java.lang.NullPointerException at
...
25
votes
5answers
2k views
Who is calling the Java Thread interrupt() method if I'm not?
I've read and re-read Java Concurrency in Practice, I've read several threads here on the subject, I've read the IBM article Dealing with InterruptedException and yet there's something I'm simply not ...
24
votes
4answers
373 views
Logging Uncaught Exceptions in Python
How do you cause uncaught exceptions to output via the logging module rather than to stderr?
I realize the best way to do this would be:
try:
raise Exception, 'Throwing a boring exception'
...
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 ...
24
votes
8answers
5k views
How much footprint does C++ exception handling add
This issue is important especially for embedded development. Exception handling adds some footprint to generated binary output. On the other hand, without exceptions the errors need to be handled some ...
23
votes
13answers
10k views
Exception Notification Gem and Rails 3
I'm trying to get this up and running, but I see "uninitialized constant ExceptionNotifier" whenever I start my server.
http://github.com/rails/exception_notification
In my Gemfile I have
gem ...
23
votes
21answers
1k views
Why do good programmers sometimes silently swallow exceptions?
I know it's evil, but I've seen swallowed exceptions in code written by a good programmer. So I'm wondering if this bad practice could have at least one positive point.
In other words, it is bad but ...
22
votes
5answers
494 views
C#: Does Visual Studio 2008 have a tool to show which Exceptions could be raised by a piece of code?
For example, if I'm opening a file, I know a FileNotFoundException might happen, or if I'm converting a String to double, a FormatException may happen. Obviously, if a method does both, both can be ...
22
votes
5answers
20k views
How does “do something OR DIE()” work in PHP?
I'm writing a php app to access a MySQL database, and on a tutorial, it says something of the form
mysql_connect($host, $user, $pass) or die("could not connect");
How does PHP know that the ...
21
votes
4answers
977 views
Is there a gcc option to assume all extern “C” functions cannot propagate exceptions?
Is there any way, short of putting an attribute on each function prototype, to let gcc know that C functions can never propagate exceptions, i.e. that all functions declared inside extern "C" should ...
21
votes
6answers
6k views
the difference between try/catch/throw and try/catch(e)/throw e
what is the difference between
try { }
catch
{ throw; }
and
try { }
catch(Exception e)
{ throw e;}
and when should i use one or another?
21
votes
5answers
2k views
C++ try/throw/catch => machine code
Mentally, I've always wondered how try/throw/catch looks behind the scenes, when the C++ compiles translates it to assembler. But since I never use it, I never got around to checking it out (some ...
21
votes
11answers
2k views
Valid use of goto for error management in C?
This question is actually a result of an interesting discussion at programming.reddit.com a while ago. It basically boils down to the following code:
int foo(int bar)
{
int return_value = 0;
...
21
votes
4answers
9k views
ASP.net MVC [HandleError] not catching exceptions
In two different application, one a custom the other the sample MVC application you get with a new VS2008 MVC project, [HandleError] is not catching exceptions.
In the sample application I have:
...
20
votes
6answers
7k views
iPhone Exception Handling
I have one crash in my iPhone application that does throw an NSException. The crash reports are completely ambiguous in where the error is and what exactly is causing it. Is there a smart way for me ...
20
votes
9answers
6k views
.NET - What's the best way to implement a “catch all exceptions handler”
I'm wondering what the best way is to have a "if all else fails catch it".
I mean, you're handling as much exceptions as possible in your application,
but still there are bound to be bugs, so I need ...
20
votes
9answers
3k views
Debug.Assert vs. Specific Thrown Exceptions
I've just started skimming 'Debugging MS .Net 2.0 Applications' by John Robbins, and have become confused by his evangelism for Debug.Assert(...).
He points out that well-implemented Asserts store ...
19
votes
8answers
816 views
C++ Nested try-catch, tricky
This question was a part of a C++ test I've taken lately. Here's a piece of code:
#include <iostream>
struct A {
A(int value) : m_value(value) { }
int m_value;
};
struct B : A {
...
19
votes
7answers
945 views
Should java try blocks be scoped as tightly as possible?
I've been told that there is some overhead in using the Java try-catch mechanism. So, while it is necessary to put methods that throw checked exception within a try block to handle the possible ...
19
votes
5answers
720 views
Will C++ exceptions safely propagate through C code?
I have a C++ application that calls SQLite's (SQLite is in C) sqlite3_exec() which in turn can call my callback function implemented in C++. SQLite is compiled into a static library.
If an exception ...
19
votes
12answers
5k views
Why Re-throw Exceptions?
I've seen the following code many times:
try
{
... // some code
}
catch (Exception ex)
{
... // Do something
throw new CustomException(ex);
// or
// throw;
// or
// ...
19
votes
7answers
10k views
Performance of try-catch in php
What kind of performance implications are there to consider when using try-catch statements in php 5?
I've read some old and seemingly conflicting information on this subject on the web before. A ...
18
votes
2answers
380 views
.NET exception caught is unexpectedly null
See below for an explanation of what is going on
I have a really weird issue where the exception caught is null.
The code uses MEF and tries hard to report composition errors. Using the debugger I ...
18
votes
5answers
1k views
Finally Block Not Running?
Ok this is kind of a weird issue and I am hoping someone can shed some light. I have the following code:
static void Main(string[] args)
{
try
{
Console.WriteLine("in try");
...
18
votes
7answers
3k views
Try-catch-finally and then again a try catch
I have often come across situations like :-
try{
...
stmts
...
}
catch(Exception ex) {
...
stmts
...
} finally {
connection.close // throws an exception
}
...