On Tuesday, October 30, 2012 7:55:26 AM UTC+1, PARAG wrote: > > Hi, > > I am seeing following exception while double click on the application > which intern opens the GWT application, Can you please help me to avoid > this kind of expections. > > com.google.gwt.core.client.JavaScriptException: (Error): Unspecified > error. description: Unspecified error. number: -2147467259(-:-) 2012-10-30 > 12:00:11,703 [ERROR] ERR_FORMRUNNER_UNCAUGHT: java.lang.RuntimeException: > com.google.gwt.core.client.JavaScriptException: (Error): Unspecified error. > description: Unspecified error. number: -2147467259 at > Unknown.fillInStackTrace(Unknown Source) at > Unknown.RuntimeException_2(Unknown Source) at > Unknown.handleError(Unknown Source) at Unknown.entry0(Unknown Source) > at Unknown.anonymous(Unknown Source) at Unknown.anonymous(Unknown > Source) at Unknown.apply(Unknown Source) at Unknown.entry0(Unknown > Source)Caused by: com.google.gwt.core.client.JavaScriptException: (Error): > Unspecified error. description: Unspecified error. number: -2147467259 >
"Unspecified errors" are unfortunately hard to track down (if IE cannot even tell you what went wrong…) First, recompile your app with emulated stacktraces: <set-property name="compiler.stackMode" value="emulated"/> and/or -style PRETTY or -style DETAILED. See also http://code.google.com/p/google-web-toolkit/issues/detail?id=5181 -- 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/-/VdC51VWXGXEJ. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
