I have a web application with servlet 3.0. For default error pages in the application I have done following in web config.
<error-page>
<location>error.html> </location>
<error-page>
Will this also catch Java.lang.Throwable exception or do I need to define error page for them seperately with ?
Any links to official documentation will be appreciated.
Thanks.