From ddc821d890724c51671468ef2c5d7b49070ab683 Mon Sep 17 00:00:00 2001 From: Jani Laakso Date: Thu, 7 Feb 2008 13:17:36 +0000 Subject: [PATCH] javadoc fix svn changeset:3730/svn branch:trunk --- src/com/itmill/toolkit/Application.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.39.5