< prev index next >

modules/graphics/src/main/java/com/sun/scenario/animation/shared/TimelineClipCore.java

Print this page
rev 8906 : RT-46083: TimelineClipCore exceptions handling improvent

*** 223,233 **** setTime(kfTicks); clipInterpolator.interpolate(kfTicks); try { onFinished.handle(new ActionEvent(kf, null)); } catch (Throwable ex) { ! ex.printStackTrace(); } } } } } --- 223,233 ---- setTime(kfTicks); clipInterpolator.interpolate(kfTicks); try { onFinished.handle(new ActionEvent(kf, null)); } catch (Throwable ex) { ! Thread.currentThread().getUncaughtExceptionHandler().uncaughtException(Thread.currentThread(), ex); } } } } }
< prev index next >