Reputation: 1601
I would like to catch all un-handled errors in my app engine application, is there a solution that would allow me to do this with some kind of universal error handler or filter solution?
I know struts has a global error handler, but I am looking for something that doesn't require implementing anything too heavy in order to achieve this. Thanks!
Upvotes: 2
Views: 300
Reputation: 2056
You can always use a filter.
This looks like a decent solution.
how do I catch errors globally, log them and show user an error page in J2EE app
Upvotes: 2