12345678910



Question 1: You are creating an error page that provides a user-friendly screen whenever a server exception occurs. You want to hide the stack trace, but you do want to provide the exception's error message to the user so the user can provide it to the customer service agent at your company. Which EL code snippet inserts this error message into the error page?
1. Message: ${exception.message}
2. Message: ${exception.errorMessage}
3. Message: ${request.exception.message}
4. Message: ${pageContext.exception.message}