File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
src/main/java/com/somemore/notification/converter Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 11package com .somemore .notification .converter ;
22
33import com .fasterxml .jackson .core .JsonProcessingException ;
4+ import com .fasterxml .jackson .databind .JsonMappingException ;
45import com .fasterxml .jackson .databind .JsonNode ;
56import com .fasterxml .jackson .databind .ObjectMapper ;
67import com .somemore .facade .event .VolunteerReviewRequestEvent ;
@@ -46,7 +47,7 @@ private Notification buildVolunteerReviewRequestNotification(String message) thr
4647 .build ();
4748 }
4849
49- private Notification buildVolunteerApplyStatusChangeNotification (String message ) throws Exception {
50+ private Notification buildVolunteerApplyStatusChangeNotification (String message ) throws JsonProcessingException {
5051 VolunteerApplyStatusChangeEvent event = objectMapper .readValue (message , VolunteerApplyStatusChangeEvent .class );
5152
5253 return Notification .builder ()
You can’t perform that action at this time.
0 commit comments