Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Develop mosip 31365 #1862

Merged
merged 3 commits into from
Mar 21, 2024
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,9 @@ public boolean idrepoCreateDraft(String id, String uin) throws ApisResourceAcces
ApiName.IDREPOCREATEDRAFT, Lists.newArrayList(id), queryParam, queryParamValue, null, ResponseWrapper.class);
if (response.getErrors() != null && !response.getErrors().isEmpty())
{
List<ErrorDTO> error=response.getErrors();
regProcLogger.error("Error while creating draft for id " + id);
throw new IdrepoDraftException(PlatformErrorMessages.IDREPO_DRAFT_EXCEPTION.getCode(), PlatformErrorMessages.IDREPO_DRAFT_EXCEPTION.getMessage());
throw new IdrepoDraftException(error.get(0).getErrorCode(), error.get(0).getMessage());
}
return (response.getErrors() == null || response.getErrors().isEmpty());
}
Expand Down
Loading