1
0
mirror of https://github.com/Stirling-Tools/Stirling-PDF.git synced 2024-06-03 06:10:11 +02:00

Update SPdfApplication.java (#853)

* Update SPdfApplication.java

* Update SPdfApplication.java

* Update SPdfApplication.java

---------

Co-authored-by: Eric <71648843+sbplat@users.noreply.github.com>
This commit is contained in:
Parth P Shah 2024-02-25 01:52:47 +05:30 committed by GitHub
parent 5bd544dcd7
commit af68c70239
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -64,7 +64,8 @@ public class SPdfApplication {
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
throw new InterruptedException("Error");
Thread.currentThread().interrupt();
throw new RuntimeException("Thread interrupted while sleeping", e);
}
try {