On Tuesday, July 3, 2012 7:06:35 PM UTC+2, otth2oskier wrote:
I am getting this exception on an intermittent basis. It is really frustrating as it happens about 75% of the time, but, restarting development mode SOMETIMES makes it go away. What is this exception telling me?com.google.gwt.core.client.JavaScriptException: (NOT_FOUND_ERR): NOT_FOUND_ERR: DOM Exception 8
See http://www.w3.org/TR/dom/#dom-domexception-not_found_err (and then search for "NotFoundError" in that spec to see when it's raised).
The easiest way to debug JavaScriptException's is to open the browsers' developer tools and set them up to break on all exceptions (in Chrome: Ctrl+Shift+I to open the tools, then go to the "sources" tab, and click the fourth icon on the bottom toolbar once). It'll break in the JSNI method that's causing the error, where you could deduce its name. Then try to set a breakpoint on that method back in the Java code.
Alternately, try SuperDevMode in Chrome: you'll see your Java code right in the dev tools when the exception happens.
-- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/LlPJSaX7b4IJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
No comments:
Post a Comment