Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
🎫 Ticket
https://jira.cms.gov/browse/AB2D-6579
🛠 Changes
Fix error handling related to the download API so that error messages are displayed to the user. Currently, a blank response is returned to the user.
ℹ️ Context
Currently, the download API fails to return error message to the user. The server sends a blank response and HTTP 500.
For reference, the status API returns a helpful error message if e.g. a job is not found:

If an exception is thrown from the status API, the
ErrorHandler
catches the exception and returns an error response as expected.If an exception is thrown from the download API, the
ErrorHandler
does not catch the exception. The exception bubbles up until aServletException
is thrown.HttpServletResponse response
which is written to directly. Spring might exclude methods like this from error handling?🧪 Validation
Deployed to IMPL and verified the following download scenarios return helpful error messages: