Skip to content

Commit

Permalink
aws sdk version 1.12.394
Browse files Browse the repository at this point in the history
  • Loading branch information
kyukong committed Mar 1, 2024
1 parent 6a818fe commit 4916e09
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-bom</artifactId>
<version>1.12.395</version>
<version>1.12.394</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ public ResponseEntity<ApplicationResponse<Void>> handleValidationException(Metho
@ExceptionHandler(Exception.class)
public ResponseEntity<ApplicationResponse<Void>> handleGlobalException(Exception e) {
log.info(e.getMessage());
log.info(e.getStackTrace().toString());
ApplicationResponse<Void> response = ApplicationResponse.fail(INTERNAL_SERVER_ERROR_CODE, e.getMessage());
return ResponseEntity.badRequest().body(response);
}
Expand Down

0 comments on commit 4916e09

Please sign in to comment.