mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 09:52:23 +01:00
Prevent annoying popup errors for unhandled systray exception.
This commit is contained in:
parent
09677151a6
commit
06c0211f1f
@ -74,6 +74,9 @@ public class CommonSetup {
|
|||||||
} else if (throwable instanceof ClassCastException &&
|
} else if (throwable instanceof ClassCastException &&
|
||||||
"sun.awt.image.BufImgSurfaceData cannot be cast to sun.java2d.xr.XRSurfaceData".equals(throwable.getMessage())) {
|
"sun.awt.image.BufImgSurfaceData cannot be cast to sun.java2d.xr.XRSurfaceData".equals(throwable.getMessage())) {
|
||||||
log.warn(throwable.getMessage());
|
log.warn(throwable.getMessage());
|
||||||
|
} else if (throwable instanceof UnsupportedOperationException &&
|
||||||
|
"The system tray is not supported on the current platform.".equals(throwable.getMessage())) {
|
||||||
|
log.warn(throwable.getMessage());
|
||||||
} else {
|
} else {
|
||||||
log.error("Uncaught Exception from thread " + Thread.currentThread().getName());
|
log.error("Uncaught Exception from thread " + Thread.currentThread().getName());
|
||||||
log.error("throwableMessage= " + throwable.getMessage());
|
log.error("throwableMessage= " + throwable.getMessage());
|
||||||
|
Loading…
Reference in New Issue
Block a user