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. ...
460
votes
26answers
376k views
Dealing 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 ...
141
votes
35answers
30k views
When to throw an exception [closed]
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 ...
22
votes
2answers
5k views
Deciphering the .NET clr20r3 exception parameters P1..P10
i'm trying to decipher the meaning on the P1...P10 parameters associated with a clr20r3 that is written to the event log when my application experiences an exception.
The best i've been able to find ...
59
votes
21answers
7k 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 ...
71
votes
12answers
22k 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 ...
52
votes
11answers
13k views
When to choose checked and unchecked exceptions
In Java (or any other language with checked exceptions), when creating your own exception class, how do you decide whether it should be checked or unchecked?
My instinct is to say that a checked ...
52
votes
12answers
66k views
Reasons of getting a java.lang.VerifyError
I'm investigating the following java.lang.VerifyError
java.lang.VerifyError: (class: be/post/ehr/wfm/application/serviceorganization/report/DisplayReportServlet, method: getMonthData signature: ...
68
votes
16answers
14k 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 ...
67
votes
7answers
26k views
Java: checked vs unchecked exception explanation
I have read multiple posts on StackOverFlow about checked vs unchecked exceptions. I'm honestly still not quite sure how to use them properly.
Joshua Bloch in "Effective Java" said that
Use ...
3
votes
2answers
429 views
How to generate exceptions from RepaintManager
in connection with my question (may be) I found another exception type that I not able to catch and print-out from SwingWorker thread,
how can I to generate RepaintManager exceptions
EDIT: I read ...
23
votes
7answers
24k views
How to grant MODIFY_PHONE_STATE permission for apps ran on Gingerbread
I write an application that attempts to modify phone call state. It works well on Android 2.2 or less, but throw an exception on Android 2.3 because of the lack of permission on ...
81
votes
13answers
10k 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 ...
30
votes
2answers
3k views
Object destruction in C++
When exactly are objects destroyed in C++, and what does that mean? Do I have to destroy them manually, since there is no Garbage Collector? How do exceptions come into play?
(Note: This is meant to ...
27
votes
7answers
3k views
Puzzling Enumerable.Cast InvalidCastException
The following throws an InvalidCastException.
IEnumerable<int> list = new List<int>() { 1 };
IEnumerable<long> castedList = list.Cast<long>();
...
416
votes
12answers
86k views
Catch multiple Exceptions at once?
It is discouraged to simply catch System.Exception, instead only the "known" Exceptions should be caught.
Now, this sometimes leads to unneccessary repetetive code, for example:
try
{
WebId = ...
151
votes
26answers
10k 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 ...
57
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 ...
66
votes
13answers
9k 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 ...
108
votes
16answers
51k 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, ...
40
votes
5answers
51k views
Official reasons for “Software caused connection abort: socket write error”
Given this stack trace snippet
Caused by: java.net.SocketException:
Software caused connection abort:
socket write error at
java.net.SocketOutputStream.socketWrite0(Native
Method)
...
55
votes
7answers
19k views
Is there a difference between “throw” and “throw ex”?
There are some posts that asks what the difference between those two are already.
(why do I have to even mention this...)
But my question is different in a way that I am calling "throw ex" in another ...
64
votes
14answers
8k views
In Java, when should I create a checked exception, and when should it be a runtime exception? [duplicate]
Possible Duplicate:
When to choose checked and unchecked exceptions
When should I create a checked exception, and when should I make a runtime exception?
For example, suppose I created the ...
145
votes
24answers
30k views
IllegalArgumentException or NullPointerException for a null parameter?
I have a simple setter method for a property and null is not appropriate for this particular property. I have always been torn in this situation: should I throw an IllegalArgumentException, or a ...
72
votes
7answers
35k 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?
23
votes
5answers
43k views
Exception in thread “main” java.lang.UnsupportedClassVersionError: a (Unsupported major.minor version 51.0) [duplicate]
Possible Duplicate:
unsupported major .minor version 51.0
I installed JDK7, a simple hello word program gets compile but when I run this I got following exception.
Exception in thread ...
61
votes
8answers
42k 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 ...
25
votes
10answers
19k views
Is it possible to catch out of memory exception in java?
I'm developing a program that would require huge amount of memory, and I want to catch when out-of-memory exception happens. I had heard this is not possible to do, but curious if there is any ...
37
votes
9answers
10k 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 ...
63
votes
14answers
7k 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() ...
15
votes
9answers
28k views
OutofMemoryError: bitmap size exceeds VM budget (Android)
Getting an Exception in the BitmapFactory. Not sure what is the issue. (Well I can guess the issue, but not sure why its happening)
ERROR/AndroidRuntime(7906): java.lang.OutOfMemoryError: bitmap size ...
138
votes
35answers
24k 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
52
votes
7answers
8k 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 ...
76
votes
6answers
28k 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 ...
59
votes
7answers
38k views
JavaScript Exception Handling
What is the best technique for catching ALL exceptions thrown within JavaScript?
Obviously, the best technique is to use try...catch. But with ansynchronous callbacks and so forth, that can get ...
101
votes
12answers
18k 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.
...
59
votes
6answers
6k 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?
45
votes
6answers
85k views
How to use wait and notify in Java?
I have 2 matrices and I need to multiply them and then print the results of each cell. As soon as one cell is ready I need to print it, but for example I need to print the [0][0] cell before cell ...
218
votes
12answers
8k 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 ...
53
votes
8answers
11k 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, ...
28
votes
10answers
3k views
Why are Exceptions not Checked in .NET?
I know Googling I can find an appropriate answer, but I prefer listening to your personal (and maybe technical) opinions.
What is the main reason of the difference between Java and C# in throwing ...
17
votes
5answers
3k views
ArgumentNullException or NullReferenceException from extension method?
What would you consider to be the best exception type to throw when an extension method is called on a null instance (where the extension method does not allow it)? Since extension methods are nothing ...
34
votes
6answers
10k views
PHP: exceptions vs errors?
Maybe I'm missing it somewhere in the PHP manual, but what exactly is the difference between an error and an exception? The only difference that I can see is that errors and exceptions are handled ...
62
votes
27answers
21k views
Why does NotImplementedException exist?
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 ...
55
votes
5answers
24k views
30
votes
5answers
23k views
Image.Save(..) throws a GDI+ exception because the memory stream is closed
i've got some binary data which i want to save as an image. When i try to save the image, it throws an exception if the memory stream used to create the image, was closed before the save. The reason i ...
34
votes
5answers
16k views
Exception in static initialization block
Why doesn't Java allow to throw an exception from static initialization block? What was the reason behind this design decision?
Any help would be greatly appreciated.
Thanks.
3
votes
3answers
4k views
SQLite 3 - JDBC driver throws “ResultsSet Closed” exception on empty resultset
I a problem in JDBC driver for SQLite.
I am executing a query with SELECT statement.
If I get an empty resultset (0 rows) then I see a "Closed ResultSet" exception thrown when checking GetString(1).
...
4
votes
6answers
19k views
ClassNotFoundException com.mysql.jdbc.Driver
This question might have asked here number of times . After doing some google search for the above error and doing some update, I can't understand why I'm still getting that error. I've already put my ...
107
votes
5answers
65k 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?
50
votes
9answers
25k views
Android, ListView IllegalStateException: “The content of the adapter has changed but ListView did not receive a notification”
What I want to do: run a background thread which calculates ListView contents and update ListView partially, while results are calculated.
What I know I have to avoid: I cannot mess with ListAdapter ...