From: rjung Date: Thu, 2 Sep 2010 16:52:48 +0000 (+0000) Subject: BZ 49865: ExceptionUtils throw NoClassDefFoundError X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=a76bd610fb0d2f1f721041819e529a10e2e02091;p=tomcat7.0 BZ 49865: ExceptionUtils throw NoClassDefFoundError during startup. Add TODO markers. git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@992018 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/java/org/apache/catalina/startup/CatalinaProperties.java b/java/org/apache/catalina/startup/CatalinaProperties.java index 69c2f5f05..bfa608ed9 100644 --- a/java/org/apache/catalina/startup/CatalinaProperties.java +++ b/java/org/apache/catalina/startup/CatalinaProperties.java @@ -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); } }