...
Code Block |
---|
if (!rsp.getPartialErros().isEmpty()) { for (int i = 0; i < rsp.getPartialErros().size(); i++) { ErrorFeedback error = new ErrorFeedback(); error.setErrorCode(rsp.getPartialErros().get(i).getErrorCode()); error.setErrorMessage(rsp.getPartialErros().get(i).getCodeContext()); error.setSeverityType(rsp.getPartialErros().get(i).getSeverity()); errorList.add(error); } } |
My suggestion is that we do it in the Tiani way. And uses an object to handle the errors in the response to the portal.