Shaun
Shaun

Reputation: 1601

Is there a way to catch all un-handled error on Google App Engine in Java?

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

Answers (1)

Jason Tholstrup
Jason Tholstrup

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

Related Questions