Tagged Questions

Programming language constructs designed to handle errors signaled by error codes, exceptions or other language specific means.

learn more… | top users | synonyms

77
votes
19answers
4k views

Is assert evil?

The Go language creators write: Go doesn't provide assertions. They are undeniably convenient, but our experience has been that programmers use them as a crutch to avoid thinking about proper ...
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
48
votes
9answers
5k 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 ...
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 ...
41
votes
6answers
12k views

Logging errors in ASP.NET MVC

I'm currently using log4net in my ASP.NET MVC application to log exceptions. The way I'm doing this is by having all my controllers inherit from a BaseController class. In the BaseController's ...
39
votes
2answers
9k views

Custom error pages on asp.net MVC3

I'm developing a MVC3 base website and I am looking for a solution for handling errors and Render custom Views for each kind of error. So imagine that I have a "Error" Controller where his main action ...
34
votes
7answers
18k views

JAX-RS / Jersey how to customize error handling?

I'm learning JAX-RS (aka, JSR-311) using Jersey. I've successfuly created a Root Resource and am playing around with parameters: @Path("/hello") public class HelloWorldResource { @GET ...
33
votes
5answers
15k views

jQuery ajax (jsonp) ignores a timeout and doesn't fire the error event

To add some basic error handling, I wanted to rewrite a piece of code that used jQuery's $.getJSON to pull in some photo's from Flickr. The reason for doing this is that $.getJSON doesn't provide ...
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 ...
28
votes
8answers
17k views

Error handling in BASH

What is your favorite method to handle errors in BASH? The best example of handling errors in BASH I have found on the web was written by William Shotts, Jr at http://www.linuxcommand.org. William ...
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
8answers
6k 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 ...
25
votes
4answers
5k views

Android - AsyncTask and error handling

I'm converting my code from using Handler to AsyncTask. The latter is great at what is does - async updates and handling of results in the main UI thread. What's unclear to me is how to handle ...
24
votes
9answers
1k views

Theory on error handling?

Most advice concerning error handling boils down to a handful of tips and tricks (see this post for example). These hints are helpful but I think they don't answer all questions. I feel that I should ...
24
votes
11answers
76k views

When to catch java.lang.Error?

In what situations should one catch java.lang.Error on an application?
24
votes
5answers
18k views

Print stack trace information from C#

As part of some error handling in our product, we'd like to dump some stack trace information. However, we experience that many users will simply take a screenshot of the error message dialog instead ...
22
votes
5answers
9k 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).
22
votes
2answers
10k views

How to catch SQLServer timeout exceptions

I need to specifically catch SQL server timeout exceptions so that they can be handled differently. I know I could catch the SqlException and then check if the message string Contains "Timeout" but ...
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; ...
20
votes
7answers
440 views

Elegant error checking

Our code (in a simple library implementation) is beginning to look like this: err = callToUnderlyingLibrary1(); if (err!=0) { printf ("blah %d\n", err); ... } err = callToUnderlyingLibrary2(); if ...
20
votes
7answers
17k views

ASP.NET MVC Custom Error Handling Application_Error Global.asax?

I have some basic code to determine errors in my MVC application. Currently In the project I have a controller called Error with action methods "HTTPError404", "HTTPError500", and "General". They ...
20
votes
9answers
2k 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 ...
19
votes
3answers
731 views

The grand, unified theory of PHP error handling

aka, Seeking generic Error Handler (ΟΚ to use commercially) I doubt that I am the best PHP programmer around, so, although I have my own generic error handler for set_error_handler(), I wondered what ...
19
votes
5answers
2k views

“Inner exception” (with traceback) in Python?

My background is in C# and I've just recently started programming in Python. When an exception is thrown I typically want to wrap it in another exception that adds more information, while still ...
19
votes
6answers
1k 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 ...
19
votes
6answers
3k 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 ...
19
votes
3answers
7k views

How should I use FormatMessage() properly in C++?

Without: MFC ATL How can I use FormatMessage() to get the error text for a HRESULT? HRESULT hresult = application.CreateInstance("Excel.Application"); if (FAILED(hresult)) { // what ...
18
votes
1answer
174 views

Expressive and composable error types

I am struggling with the best way to report errors in a set of functions that should compose nicely, in a library I'm working on. Concretely, I have functions that look like: foo, bar, baz :: a ...
18
votes
2answers
1k views

Silverlight 4 / .NET 4 Debugging resource strings

I recently encountered a strange thing. On some of my company's servers when an exception message is printed out (yes, bad, I know. It's for debugging), the actual message isn't displayed. Instead it ...
18
votes
5answers
14k views

try and catch a warning

I need to catch some warnings being thrown from some php native functions and then handle them. specially: array dns_get_record ( string $hostname [, int $type= DNS_ANY [, array &$authns [, ...
18
votes
5answers
3k 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 ...
18
votes
14answers
1k 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 ...
18
votes
15answers
7k views

Error handling in C code

What do you consider "best practice" when it comes to error handling errors in a consistent way in a C library. There are two ways I've been thinking of: Always return error code. A typical function ...
17
votes
2answers
1k views

iPhone Core Data “Production” Error Handling

I've seen in the example code supplied by Apple references to how you should handle Core Data errors. I.e: NSError *error = nil; if (![context save:&error]) { /* Replace this implementation with ...
17
votes
7answers
2k views

Logging JavaScript-Errors on Server

Im running a ASP.NET Site where I have problems to find some JavaScript-Errors just with manual testing. Is there a possibility to catch all JavaScript-Errors on the Client Side and log them on the ...
16
votes
6answers
563 views

Is it okay for constructors to throw runtime exceptions?

When checked exceptions are thrown from methods in a constructor that the constructor can't handle is it okay to catch them and throw them back out as a runtime exception if your sure the application ...
16
votes
3answers
3k views

Best Practices for Error Logging and/or reporting for iPhone

When I do web development, I use a custom made logger that catches fatal errors and appends a trace to a file and displays a message to the user. I can occasionally glance to see if the file changed, ...
16
votes
5answers
3k views

Best practices for defining your own exception classes?

I have some special exception cases that I want to throw and catch, so I want to define my own exception classes. What are the best practices for that? Should I inherit from std::exception or ...
15
votes
10answers
548 views

When is it appropriate to use error codes?

In languages that support exception objects (Java, C#), when is it appropriate to use error codes? Is the use of error codes ever appropriate in typical enterprise applications? Many well-known ...
15
votes
10answers
749 views

How to handle incorrect values in a constructor?

Please note that this is asking a question about constructors, not about classes which handle time. Suppose I have a class like this: class Time { protected: unsigned int m_hour; unsigned ...
14
votes
12answers
761 views

Any good idioms for error handling in straight C programs?

Getting back in to some C work. Many of my functions look like this: int err = do_something(arg1, arg2, arg3, &result); With the intent the result gets populated by the function, and the ...
14
votes
7answers
2k 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 ...
14
votes
11answers
1k 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 ...
14
votes
12answers
2k views

What are the principles guiding your exception handling policy?

There is a lot of relativity involved in working with exceptions. Beyond low level APIs where exceptions cover errors raised from hardware and the OS there is a shady area where the programmer decides ...
14
votes
9answers
5k views

How do you log errors (Exceptions) in your ASP.NET apps?

I'm looking for the best way to log errors in an ASP.NET application. I want to be able to receive emails when errors occurs in my application, with detailed information about the Exception and the ...
13
votes
1answer
599 views

C# HttpWebRequest SEC_I_RENEGOTIATE Intermittent Errors

I'm working on login / logout functionality using SSL POST calls in a C# (.Net framework 3.5) application. Getting the response from the server via HttpWebRequest::BeginGetResponse() works 80% of the ...
13
votes
3answers
4k views

Error Handling in asp.net mvc 3

Is there a built in or a proper way to handle errors in asp.net mvc 3? This is what I want to do: If the application crashes, or throws an error, it goes to a specific error page. I can throw my ...
13
votes
11answers
601 views

Exceptions and error codes: mixing them the right way

I am developing a C++ dongle communication library. The library would provide an unified interface to communicate with a range of remote code execution dongles like SenseLock, KEYLOK, Guardant Code. ...
13
votes
8answers
531 views

Walter Bright's use of the word “redundancy”… or 'The heck does that mean?'

So I'm reading this interview with Walter Bright about the D language in Bitwise (http://www.bitwisemag.com/copy/programming/d/interview/d_programming_language.html), and I come across this really ...
13
votes
8answers
478 views

What is a good “Error Checking” Pattern (Java)?

I'll explain what I mean by input error checking. Say you have a function doSomething(x). If the function completes successfully doSomething does something and returns nothing. However, if there ...

1 2 3 4 5 58