Top "Error-handling" questions

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

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("/…

java rest error-handling jersey jax-rs
ASP.NET MVC Custom Error Handling Application_Error Global.asax?

I have some basic code to determine errors in my MVC application. Currently in my project I have a controller …

c# asp.net asp.net-mvc error-handling user-experience
Pipe output and capture exit status in Bash

I want to execute a long running command in Bash, and both capture its exit status, and tee its output. …

bash shell error-handling pipe
What's the source of Error: getaddrinfo EAI_AGAIN?

My server threw this today, which is a Node.js error I've never seen before: Error: getaddrinfo EAI_AGAIN my-store.…

javascript node.js error-handling dns shopify
When should I use Write-Error vs. Throw? Terminating vs. non-terminating errors

Looking at a Get-WebFile script over on PoshCode, http://poshcode.org/3226, I noticed this strange-to-me contraption: $URL_Format_Error = [string]"..." …

powershell error-handling powershell-2.0
live output from subprocess command

I'm using a python script as a driver for a hydrodynamics code. When it comes time to run the simulation, …

python shell logging error-handling subprocess
ASP.NET MVC 404 Error Handling

Possible Duplicate: How can I properly handle 404 in ASP.NET MVC? I've made the changes outlined at 404 Http error handler …

asp.net-mvc error-handling
How to display my application's errors in JSF?

In my JSF/Facelets app, here's a simplified version of part of my form: <h:form id="myform"> &…

jsf error-handling facelets
Should a retrieval method return 'null' or throw an exception when it can't produce the return value?

I am using java language,I have a method that is supposed to return an object if it is found. …

java exception error-handling null
When to catch java.lang.Error?

In what situations should one catch java.lang.Error on an application?

java exception error-handling exception-handling