Skip to content

Commit

Permalink
refactor: 결제 승인일시 예외 메시지 명확화
Browse files Browse the repository at this point in the history
  • Loading branch information
letskuku authored Aug 25, 2024
1 parent 2486711 commit 40c49f3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ private LocalDateTime parseToLocalDateTime(String dateTimeString) {

return LocalDateTime.parse(formattedString, DateTimeFormatter.ISO_LOCAL_DATE_TIME);
} catch (DateTimeParseException e) {
throw new PayAppException(PayAppErrorCode.DATETIME_PARSE_FAIL);
throw new PayAppException(PayAppErrorCode.DATETIME_PARSE_FAIL, dateTimeString);
}
}
}

0 comments on commit 40c49f3

Please sign in to comment.