Ok I found an easy workaround. This commit <https://github.com/gwtproject/gwt/commit/1d660d2fc00a5cbfeccf512251f78ab4302ab633> explains why JsException was created. So in order to fix this problem it is enough add following entry to gwt.xml:
<set-configuration-property name="gin.classloading.exceptedPackages" value="com.google.gwt.core.client"/> Easy fix=) On Saturday, 2 April 2016 02:05:35 UTC+2, Alexey Bykov wrote: > > Seems that you right Thomas, GWT-2.8.0-SNAPSHOT emulates quite a few > classes from Java 8 compared to beta1 (whole java.util.function package!), > and one of them is a JsException which isn't present in Java 8. > > On Friday, 1 April 2016 14:07:12 UTC+2, Thomas Broyer wrote: >> >> >> >> On Friday, April 1, 2016 at 1:55:51 PM UTC+2, Jens wrote: >>> >>> Sounds like you are not the only one: >>> https://groups.google.com/forum/#!topic/google-gin/ywh7d9s6GpA >>> >> >> Looking quickly at the stacktrace, it could be a class from super-source: >> not found in the parent classloader so tentatively defined here from GWT's >> internal JDT-compiled classes. >> If that's the case, there are chances that it could be fixed by moving >> the class to another package (e.g. javaemul.internal). >> > -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/google-web-toolkit. For more options, visit https://groups.google.com/d/optout.
