(Choose 1 answer)
Which of the following is a sensible way of sending an error page to the client in case of a business exception that extends from java.lang.Exception? (Choose one)
A. Catch the exception, wrap it into ServletException and define the 'business exception to error-page'mapping in web.xml
B. Don't catch the exception and define the 'exception to error-page' mapping in web.xml
C. Don't do anything, the servlet container will automatically send a default error page.
Exit 50