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-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org