29
votes
31answers
3k views
Return ‘null’ or throw exception
I have a method that is suppose to return an object if it is found.
If it is not found, should I:
a) return null
b) throw an exception
c) other
22
votes
19answers
1k views
Is assert evil?
The Go language creators write:
Go doesn't provide assertions. (...) Programmers use them as a crutch to
avoid thinking about proper error
handling and reporting.
What is your opinion about …
17
votes
15answers
2k 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 …
17
votes
7answers
1k views
.NET - Throwing Exceptions best practices
What are the best practices to consider when catching exceptions, and re-throwing them. I want to make sure that the Exception object's InnerException and stack trace are preserved. Is there a …
14
votes
5answers
601 views
What should be included in the state-of-the-art error and exception handling strategy?
I understand that this is a very broad question, but a short “it depends” kind of answer will not be accepted. Strategies are born to deal with broad issues.
What issues should an application …
14
votes
7answers
1k views
Should I ignore the occasional Invalid viewstate error?
Every now and then (once every day or so) we're seeing the following types of errors in our logs for an ASP.NET 3.5 application
Invalid viewstate
Invalid postback or callback argument
Are these …
13
votes
11answers
726 views
What is a good way to pass useful state information to an exception in Java?
I noticed some confusion initially with my question. I'm not asking about how to configure a logger nor how to use a logger properly, but rather how to capture all of the information that would have …
13
votes
5answers
913 views
How is the C++ exception handling runtime implemented?
I am intrigued by how the C++ exception handling mechanism works. Specifically, where is the exception object stored and how does it propagate through several scopes until it is caught? Is it stored …
13
votes
10answers
15k views
When to catch java.lang.Error?
In what situations should one catch java.lang.Error on an application?
12
votes
6answers
620 views
Best Practices for MVC, jQuery and Handling Errors
Does anyone have a elegant way of dealing with errors in ASP.Net MVC? I constantly run into issues when dealing with requests to controller actions where the Action can be used for both normal …
12
votes
14answers
710 views
Why are Exceptions said to be so bad for Input Validation?
I understand that "Exceptions are for exceptional cases" [a], but besides just being repeated over and over again, I've never found an actual reason for this fact.
Being that they halt execution, it …
11
votes
1answer
152 views
Is there any Perl module that can keep me from adding `or die` to anything that can fail?
I'm writing code that runs all sorts of external commands as well as various filesystem commands that can fail.
Is there any module that can save me the trouble of adding or die to anything that can …
11
votes
7answers
866 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;
…
10
votes
5answers
2k views
What is the difference between exit() and abort()?
In C and C++, what is the difference between exit() and abort()? I am trying to end my program after an error (not an exception).
10
votes
9answers
962 views
Error handling in PHP
I'm familiar with some of the basics, but what I would like to know more about is when and why error handling (including throwing exceptions) should be used in PHP, especially on a live site or web …
