Return-Path: Delivered-To: apmail-tomcat-dev-archive@www.apache.org Received: (qmail 76045 invoked from network); 2 Sep 2010 16:54:25 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 2 Sep 2010 16:54:25 -0000 Received: (qmail 49874 invoked by uid 500); 2 Sep 2010 16:54:25 -0000 Delivered-To: apmail-tomcat-dev-archive@tomcat.apache.org Received: (qmail 49629 invoked by uid 500); 2 Sep 2010 16:54:24 -0000 Mailing-List: contact dev-help@tomcat.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Tomcat Developers List" Delivered-To: mailing list dev@tomcat.apache.org Received: (qmail 49614 invoked by uid 99); 2 Sep 2010 16:54:24 -0000 Received: from Unknown (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 02 Sep 2010 16:54:24 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 02 Sep 2010 16:54:06 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 6DE7F238899C; Thu, 2 Sep 2010 16:52:48 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r992018 - /tomcat/trunk/java/org/apache/catalina/startup/CatalinaProperties.java Date: Thu, 02 Sep 2010 16:52:48 -0000 To: dev@tomcat.apache.org From: rjung@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100902165248.6DE7F238899C@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: rjung Date: Thu Sep 2 16:52:48 2010 New Revision: 992018 URL: http://svn.apache.org/viewvc?rev=992018&view=rev Log: BZ 49865: ExceptionUtils throw NoClassDefFoundError during startup. Add TODO markers. Modified: tomcat/trunk/java/org/apache/catalina/startup/CatalinaProperties.java Modified: tomcat/trunk/java/org/apache/catalina/startup/CatalinaProperties.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/startup/CatalinaProperties.java?rev=992018&r1=992017&r2=992018&view=diff ============================================================================== --- tomcat/trunk/java/org/apache/catalina/startup/CatalinaProperties.java (original) +++ tomcat/trunk/java/org/apache/catalina/startup/CatalinaProperties.java Thu Sep 2 16:52:48 2010 @@ -99,6 +99,7 @@ public class CatalinaProperties { is = (new URL(configUrl)).openStream(); } } catch (Throwable t) { + // TODO Throws NoClassDefFoundError for ExceptionUtils ExceptionUtils.handleThrowable(t); } @@ -109,6 +110,7 @@ public class CatalinaProperties { File properties = new File(conf, "catalina.properties"); is = new FileInputStream(properties); } catch (Throwable t) { + // TODO Throws NoClassDefFoundError for ExceptionUtils ExceptionUtils.handleThrowable(t); } } @@ -118,6 +120,7 @@ public class CatalinaProperties { is = CatalinaProperties.class.getResourceAsStream ("/org/apache/catalina/startup/catalina.properties"); } catch (Throwable t) { + // TODO Throws NoClassDefFoundError for ExceptionUtils ExceptionUtils.handleThrowable(t); } } --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org For additional commands, e-mail: dev-help@tomcat.apache.org