From: Jani Laakso Date: Thu, 7 Feb 2008 13:17:36 +0000 (+0000) Subject: javadoc fix X-Git-Tag: 6.7.0.beta1~5090 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=ddc821d890724c51671468ef2c5d7b49070ab683;p=vaadin-framework.git javadoc fix svn changeset:3730/svn branch:trunk --- diff --git a/src/com/itmill/toolkit/Application.java b/src/com/itmill/toolkit/Application.java index 2dbca6560e..ec9c8f8b79 100644 --- a/src/com/itmill/toolkit/Application.java +++ b/src/com/itmill/toolkit/Application.java @@ -1018,7 +1018,7 @@ public abstract class Application implements URIHandler, Terminal.ErrorListener * is thrown by the setVariable to the terminal. The default * implementation sets the exceptions as ComponentErrors to * the component that initiated the exception and prints stack trace to - * System.err. + * standard error stream. *

*

* You can safely override this method in your application in order to @@ -1030,7 +1030,7 @@ public abstract class Application implements URIHandler, Terminal.ErrorListener * @see com.itmill.toolkit.terminal.Terminal.ErrorListener#terminalError(com.itmill.toolkit.terminal.Terminal.ErrorEvent) */ public void terminalError(Terminal.ErrorEvent event) { - // throw it to System.err too + // throw it to standard error stream too event.getThrowable().printStackTrace(); // Finds the original source of the error/exception