Skip to content
This repository was archived by the owner on Oct 10, 2025. It is now read-only.

Commit 1507556

Browse files
authored
Merge pull request #57 merge from branch 26 - 2
2 parents 06f404c + 22d4b97 commit 1507556

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ services:
1818
# Application Service
1919
app:
2020
# Use the image built by the Spring Boot Maven plugin
21-
image: docker.io/noobdevsam/spring-project-steganography-tool:v1
21+
image: docker.io/noobdevsam/spring-project-steganography-tool:v2
2222
container_name: stego-app
2323
ports:
2424
- "8080:8080"

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</parent>
1111
<groupId>com.example</groupId>
1212
<artifactId>spring-project-steganography-tool</artifactId>
13-
<version>v1</version>
13+
<version>v2</version>
1414
<name>spring-project-steganography-tool</name>
1515
<description>A powerful and secure steganography tool built with Spring Boot 3</description>
1616
<url>https://github.com/noobdevsam/spring-project-steganography-tool</url>

src/main/java/com/example/springprojectsteganographytool/exceptions/GlobalExceptionHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ public ProblemDetail handleGeneric(
153153
// logger.error("Unhandled exception", ex);
154154
var pd = ProblemDetail.forStatusAndDetail(
155155
HttpStatus.INTERNAL_SERVER_ERROR,
156-
"An unexpected error occurred."
156+
ex.getLocalizedMessage()
157157
);
158158
var traceId = MDC.get("traceId");
159159

0 commit comments

Comments
 (0)