Skip to content

Commit

Permalink
Merge pull request #599 from Nikhil1Reddy/mydevelop4
Browse files Browse the repository at this point in the history
MOSIP-26582 stackTrace Error fix
  • Loading branch information
mayuradesh committed Jul 3, 2023
2 parents 5563f0f + 0c416e8 commit 25b7b04
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,7 @@ public ValidationResultDto validateResponse(ValidationInputDto responseDto) {
} catch (Exception ex) {
validationResultDto.setStatus(AppConstants.FAILURE);
validationResultDto.setDescriptionKey("HASH_VALIDATOR_003" + AppConstants.ARGUMENTS_DELIMITER + ex);
validationResultDto.setDescription("Hash validation failure due to: " + ex);
ex.printStackTrace();
validationResultDto.setDescription("Hash validation failure due to: " + ex.getLocalizedMessage());
}
return validationResultDto;
}
Expand Down

0 comments on commit 25b7b04

Please sign in to comment.