An exception is a rarely occurring (exceptional!) condition that requires deviation from the program's normal flow. Normally, an exception should not result in total failure, but instead be attended by an exception handler. Exception handling is a built-in construct in many programming languages. Usually, exceptions are handled by unwinding the stack, thus rolling back to a defined state outside the exception's scope, and then invoking a handler routine.
160
votes
22answers
147k views
How to deal with “java.lang.OutOfMemoryError: PermGen space” error
Recently I ran into this error in my web application:
java.lang.OutOfMemoryError: PermGen space
It's a typical Hibernate/JPA + IceFaces/JSF application running on Tomcat 6 and JDK 1.6.
Apparently ...
153
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 ...
110
votes
22answers
5k views
The case against checked exceptions
For a number of years now I have been unable to get a decent answer to the following question: why are some developers so against checked exceptions. I have had numerous conversations, read things on ...
84
votes
36answers
12k views
When to throw an exception
I have exceptions created for every condition that my application does not expect. UserNameNotValidException, PasswordNotCorrectException etc.
However I was told I should not create exceptions for ...
76
votes
34answers
9k views
Should a retrieval method return 'null' or throw an exception when it can't produce the return value?
I have a method that is suppose to return an object if it is found.
If it is not found, should I:
return null
throw an exception
other
74
votes
17answers
2k views
True-way solution in Java: parse 2 numbers from 2 strings and then return their sum
Quite a stupid question. Given the code:
public static int sum(String a, String b) /* throws? WHAT? */ {
int x = Integer.parseInt(a); // throws NumberFormatException
int y = Integer.parseInt(b); ...
67
votes
9answers
9k views
C# - Exception messages in English?
We are logging any exceptions that happen in our system by writing the Exception.Message to a file. However, they are written in the culture of the client. And Turkish errors don't mean a lot to me.
...
62
votes
22answers
4k views
Is “Out Of Memory” A Recoverable Error?
I've been programming a long time, and the programs I see, when they run out of memory, attempt to clean up and exit, i.e. fail gracefully. I can't remember the last time I saw one actually attempt to ...
62
votes
11answers
7k views
How slow are .NET exceptions?
I don't want a discussion about when to and not to throw exceptions. I wish to resolve a simple issue. 99% of the time the argument for not throwing exceptions revolves around them being slow while ...
62
votes
20answers
10k views
IllegalArgumentException or NullPointerException for a null parameter?
I have a simple setter method for a Java property and null is not appropriate for this particular property. I have always been torn, in this situation: should I throw an IllegalArgumentException, or ...
57
votes
3answers
10k views
Is there anything like .NET's NotImplementedException in Java?
Is there anything like .net's NotImplementedException in java?
51
votes
28answers
5k 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 ...
51
votes
11answers
22k views
Cannot delete directory with Directory.Delete(path, true)
I'm using .NET 3.5, trying to recursively delete a directory using:
Directory.Delete(myPath, true);
My understanding is that this should throw if files are in use or there is a permissions problem, ...
50
votes
27answers
10k views
Why aren't variables declared in “try” in scope in “catch” or “finally”?
In C# and in Java (and possibly other languages as well), variables declared in a "try" block are not in scope in the corresponding "catch" or "finally" blocks. For example, the following code does ...
47
votes
10answers
1k views
Is it OK to try/catch something just to check if an exception was thrown or not?
Is it a good way to try something useless just to see if a particular exception is thrown by this code ?
I want to do something when the exception is thrown, and nothing otherwise.
try {
new ...
46
votes
19answers
8k views
When should I use Debug.Assert()?
I've been a professional software engineer for about a year now, having graduated with a CS degree. I've known about assertions for a while in C++ and C, but had no idea they existed in C# and .NET at ...
45
votes
3answers
8k 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 ...
45
votes
14answers
4k views
In Java, when should I create a checked exception, and when should it be a runtime exception?
When should I create a checked exception, and when should I make a runtime exception?
For example, suppose I created the following class:
public class Account {
private float balance;
/* ...
45
votes
16answers
8k views
Best practices for exception management in Java or C#
I'm stuck deciding how to handle exceptions in my application.
Much if my issues with exceptions comes from 1) accessing data via a remote service or 2) deserializing a JSON object. Unfortunately I ...
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 ...
42
votes
14answers
4k views
Should I use an exception specifier in C++?
In C++, you can specify that a function may or may not throw an exception by using an exception specifier. For example:
void foo() throw(); // guaranteed not to throw an exception
void bar() ...
41
votes
6answers
4k views
Should I derive custom exceptions from Exception or ApplicationException in .NET?
What is best practice when creating your exception classes in a .NET solution: To derive from System.Exception or from System.ApplicationException?
40
votes
12answers
9k views
throwing exceptions out of a destructor
Most people say never throw an exception out of a destructor - doing so results in undefined behavior. Stroustrup makes the point that "the vector destructor explicitly invokes the destructor for ...
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 ...
39
votes
24answers
3k views
Is there any valid reason to ever ignore a caught exception
Wow, I just got back a huge project in C# from outsourced developers and while going through my code review my analysis tool revealed bunches of what it considered bad stuff. One of the more ...
37
votes
22answers
3k views
Why not use exceptions as regular flow of control?
My question boils down to : “Why not use exception (or error- for that matter) handling for regular program flow?
To avoid all standard-answers I could have googled on, I will provide an example you ...
37
votes
7answers
2k views
Which built-in .net exceptions can I throw from my application?
If I need to throw an exception from within my application which of the built-in .net exception classes can I use? Are they all fair-game? When should I derive my own?
37
votes
23answers
6k views
When is it right for a constructor to throw an exception?
When is it right for a constructor to throw an exception? (Or in the case of Objective C: when is it right for an init'er to return nil?)
It seems to me that a constructor should fail -- and thus ...
36
votes
6answers
19k views
How do I check if a variable exists in Python?
I want to check if a variable exists. Now I'm doing something like this:
try:
myVar
except NameError:
# Doint smth
Are there any other ways without exceptions? Or is that part of code right?
35
votes
13answers
5k views
design by contract tests by assert or by exception?
When programming by contract a function or method first checks whether its preconditions are fulfilled, before starting to work on its responsibilities, right? The two most prominent ways to do these ...
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 ...
34
votes
7answers
14k views
Does C++ support 'finally' blocks? (And what's this 'RAII' I keep hearing about?)
Does C++ support 'finally' blocks?
What is the RAII idiom?
What is the difference between C++'s RAII idiom and C#'s 'using' statement?
33
votes
10answers
10k views
throws Exception in finally blocks
Is there an elegant way to handle exceptions that are thrown in the a finally block?
For example:
try {
// Use the resource.
}
catch( Exception ex ) {
// Problem with the resource.
}
finally {
...
33
votes
7answers
4k views
How do exceptions work (behind the scenes) in c++
I keep seeing people say that exceptions are slow but I never see any proof. So instead of asking if they are I will ask how do exceptions work behind the scene so I can make a decisions of when to ...
33
votes
7answers
6k views
In C#, how can I rethrow InnerException without losing stack trace?
I am calling, through reflection, a method which may cause an exception. How can I pass the exception to my caller without the wrapper reflection puts around it? I am rethrowing the InnerException, ...
32
votes
10answers
2k views
How are exceptions implemented under the hood?
Just about everyone uses them, but many, including me simply take it for granted that they just work.
I am looking for high-quality material. Languages I use are: Java, C, C#, Python, C++, so these ...
32
votes
29answers
3k views
Why java people frequently consume exception silently?
I never do any serious java coding before, but I learned the syntax, libraries, and concept based on my existing skill (delphi & c#). One think I hardly understand is that I've seen soo many many ...
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
5answers
11k views
BaseException.message deprecated in Python 2.6
I get a warning that BaseException.message is deprecated in Python 2.6 when I use the following user-defined exception:
class MyException(Exception):
def __init__(self, message):
self.message = ...
29
votes
3answers
739 views
Haskell approaches to error handling
No argument here that there are a variety of mechanisms in place in Haskell to handle errors and properly handle them. Error monad, Either, Maybe, exceptions, etc.
So why is it that it feels much ...
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 ...
29
votes
11answers
2k 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" ...
29
votes
4answers
6k views
Exception Logging for WCF Services using ELMAH
We are using the excellent ELMAH to deal with unhandled exceptions in an ASP.NET 3.5 web application. This works extremely well for all of the site apart from WCF services which are being consumed ...
28
votes
5answers
2k views
Why doesn't C# have support for first pass exception filtering?
Note: this is not a duplicate of Jeff's question.
That question asked "Is an equivalent?" I know there isn't, and I want to know why!
The reason I ask is that I've only just become clear on how ...
28
votes
8answers
16k views
How to catch all exceptions in Flex?
When I run a Flex application in the debug flash player I get an exception pop up as soon as something unexpected happened. However when a customer uses the application he does not use the debug flash ...
27
votes
12answers
787 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
7answers
15k views
Error Handling in ASP.NET MVC
How can I correctly handle exceptions thrown from controllers in ASP.NET MVC? The HandleError attribute seems to only process exceptions thrown by the MVC infrastructure and not exceptions thrown by ...
27
votes
7answers
59k views
Try/Catch in Python
When you just want to do a try catch without handling the exception, how do you do it in Python?
try :
shutil.rmtree ( path )
except :
pass
27
votes
8answers
19k views
ASP.NET custom error page - Server.GetLastError() is null
I have a custom error page set up for my application:
<customErrors mode="On" defaultRedirect="~/errors/GeneralError.aspx"
/>
In Global.asax, Application_Error(), the following code works to ...
27
votes
6answers
8k views
Returning from a finally block in Java
I was surprised recently to find that it's possible to have a return statement in a finally block in Java.
It seems like lots of people think it's a bad thing to do as described in 'Don't return in a ...