Subversion Repositories eFlore/Applications.coel

Rev

Rev 1780 | Rev 1802 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1780 Rev 1784
Line 9... Line 9...
9
 
9
 
Line 10... Line 10...
10
	public void onModuleLoad() {
10
	public void onModuleLoad() {
11
		
11
		
12
		// A décommenter + compiler en detailed dans le cas d'une erreur
12
		// A décommenter + compiler en detailed dans le cas d'une erreur
13
		// survernant uniquement sur le serveur
13
		// survernant uniquement sur le serveur
14
		GWT.setUncaughtExceptionHandler(null);
14
		/*GWT.setUncaughtExceptionHandler(null);
15
		GWT.setUncaughtExceptionHandler(new GWT.UncaughtExceptionHandler() {	
15
		GWT.setUncaughtExceptionHandler(new GWT.UncaughtExceptionHandler() {	
16
			@Override
16
			@Override
17
			public void onUncaughtException(Throwable e) {
17
			public void onUncaughtException(Throwable e) {
18
					Window.alert("uncaught: " + e.getMessage());
18
					Window.alert("uncaught: " + e.getMessage());
19
					String s = buildStackTrace(e, "RuntimeException:\n");
19
					String s = buildStackTrace(e, "RuntimeException:\n");
20
					Window.alert(s);
20
					Window.alert(s);
21
					e.printStackTrace();
21
					e.printStackTrace();
Line 22... Line 22...
22
			}
22
			}
23
		});
23
		});*/
Line 24... Line 24...
24
		
24