Skip to content

Commit

Permalink
client upgrade + exception handling
Browse files Browse the repository at this point in the history
  • Loading branch information
galovics committed Oct 6, 2023
1 parent 292b4e0 commit a86ede7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ repositories {
}
}

ext.fineractVersion = '0.0.267-41719d25'
ext.fineractVersion = '0.0.390-00e2880'

dependencies {
implementation 'org.springframework.boot:spring-boot-starter-activemq'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public List<EventMessageDTO> getMessages() {
eventMessages = convertToReadableFormat(messages);
} catch (ClassNotFoundException | NoSuchMethodException | InvocationTargetException |
IllegalAccessException e) {
log.error("Unable to read message", e);
throw new RuntimeException("Unable to read messages", e);
}
return eventMessages;
}
Expand All @@ -43,7 +43,7 @@ public List<EventMessageDTO> getMessagesByType(String eventType) {
eventMessages = convertToReadableFormat(messages);
} catch (ClassNotFoundException | NoSuchMethodException | InvocationTargetException |
IllegalAccessException e) {
log.error("Unable to read message", e);
throw new RuntimeException("Unable to read messages", e);
}
return eventMessages;
}
Expand Down

0 comments on commit a86ede7

Please sign in to comment.