Skip to content

Commit 355da68

Browse files
committed
Completing failed ITaskbarList3 instantiation log message
1 parent 9a254cd commit 355da68

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/com/nativejavafx/taskbar/TaskbarProgressbarImpl.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ private void instantiateITaskbarList() {
6161
executor.execute(() -> {
6262
try {
6363
iTaskbarList3.set(COMRuntime.newInstance(ITaskbarList3.class));
64-
} catch (ClassNotFoundException e) {
65-
logger.error("Couldn't instantiate ");
64+
} catch (ClassNotFoundException | RuntimeException e) {
65+
logger.error("Couldn't instantiate ITaskbarList3", e);
6666
}
6767
});
6868
}

0 commit comments

Comments
 (0)