0
votes
1answer
29 views
Separating Business Layer Errors from API errors
The title is horrible, i know; I'm terrible at titles on SO here.
I'm wondering what would be the best way to present unified error responses in a webapi when errors could be rais …
2
votes
1answer
32 views
My AsyncErrorEvent isn’t working to catch errors for my RTMP video player
Hi again peepz, I have this streaming video player with an asyncErrorHandler function which isn't working correctly.
In Flash player 10 I get no errors, but in Flash player 9 I'll …
5
votes
7answers
157 views
Have program recognize it crashed last time?
What is the best way to have a (Java) program recognize it crashed last time it ran and show a message along the lines of "it looks like this program crashed on you last time. Repo …
1
vote
2answers
27 views
PHP DOMDocument error handling
Hi,
In my application I am loading xml from url in order to parse it.
But sometimes this url may not be valid. In this case I need to handle errors.
I have the following code:
$x …
2
votes
6answers
146 views
How can code in a “try…catch” block throw an unhandled exception?
I had an exception in some code today: "A [some exception] was unhandled."
However, this code was clearly inside the "try" block of a "try/catch" structure.
What am I missing her …
4
votes
10answers
445 views
Why is exception handling bad?
I've heard this on the Internet. For instance, Google's Go language has no exceptions as a design choice, and Linus of Linux fame has called exceptions crap. I am just wondering wh …
0
votes
1answer
54 views
Is there anything inherently dangerous about instantiating a dojo class like this?
I need to be able to instantiate an object of a class in Dojo at runtime and mix it into another object (kind of like specifying an extends or an implements in Java, but at runtime …
0
votes
1answer
15 views
Exception Handling with Structuremap
Is there anyway to recover gracefully in an ASP.NET MVC application if the database is not found for some reason when I try to get an instance of my NHibernate Session from Structu …
1
vote
0answers
16 views
Streamlining entity lookup in Grails controllers (the typical get / findById)
Almost every controller action looks up one or more entities based on some user input. For some time I've been wanting to remove some of this boring, dry-breaking, boilerplate code …
0
votes
1answer
27 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 h …
0
votes
3answers
55 views
custom 404 page for nonexistent php files
Hi,
I just tried to redirect nonexistent files on the server to my custom 404 page but it only redirects .html files.
I used that in my .htaccess file:
ErrorDocument 404 /404/4 …
1
vote
2answers
36 views
Handling of server-side HTTP 4nn/5nn errors in jQuery’s ajax requests
To the point: how would you handle a server-side HTTP 4nn/5nn errors in jQuery's ajax requests? This case concerns a JSP/Servlet webapplication at the server side. Here I am not ta …
2
votes
4answers
115 views
How to tell why a file deletion fails in Java?
File file = new File(path);
if (!file.delete())
{
throw new IOException(
"Failed to delete the file because: " +
getReasonForFileDeletionFailureInPlainEnglish(f …
6
votes
3answers
196 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 …
1
vote
4answers
39 views
Setting custom error handler dramatically increases script execution time
I have a script in production - an ecommerce checkout page - that has had some errors in the past that have prevented it from working and have cost me money. I wanted to get notif …
