Return-Path: Delivered-To: apmail-db-derby-commits-archive@www.apache.org Received: (qmail 6487 invoked from network); 14 Jun 2007 15:40:21 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 14 Jun 2007 15:40:21 -0000 Received: (qmail 54393 invoked by uid 500); 14 Jun 2007 15:40:23 -0000 Delivered-To: apmail-db-derby-commits-archive@db.apache.org Received: (qmail 54322 invoked by uid 500); 14 Jun 2007 15:40:23 -0000 Mailing-List: contact derby-commits-help@db.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: "Derby Development" List-Id: Delivered-To: mailing list derby-commits@db.apache.org Received: (qmail 54272 invoked by uid 99); 14 Jun 2007 15:40:23 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 14 Jun 2007 08:40:23 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.130] (HELO eos.apache.org) (140.211.11.130) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 14 Jun 2007 08:40:19 -0700 Received: from eos.apache.org (localhost [127.0.0.1]) by eos.apache.org (Postfix) with ESMTP id 0B46E59A07 for ; Thu, 14 Jun 2007 15:39:59 +0000 (GMT) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Apache Wiki To: derby-commits@db.apache.org Date: Thu, 14 Jun 2007 15:39:58 -0000 Message-ID: <20070614153958.24539.71081@eos.apache.org> Subject: [Db-derby Wiki] Update of "UnwindExceptionChain" by JohnHEmbretsen X-Virus-Checked: Checked by ClamAV on apache.org Dear Wiki user, You have subscribed to a wiki page or wiki category on "Db-derby Wiki" for change notification. The following page has been changed by JohnHEmbretsen: http://wiki.apache.org/db-derby/UnwindExceptionChain The comment on the change is: Fixed typo in method name ------------------------------------------------------------------------------ catch (SQLException e) { do { System.out.println(e.toString()); - e.printStackStrace(System.out); + e.printStackTrace(System.out); e = e.getNextException(); } while (e != null); }