BZ 49865: ExceptionUtils throw NoClassDefFoundError
authorrjung <rjung@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 2 Sep 2010 16:52:48 +0000 (16:52 +0000)
committerrjung <rjung@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 2 Sep 2010 16:52:48 +0000 (16:52 +0000)
during startup. Add TODO markers.

git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@992018 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/catalina/startup/CatalinaProperties.java

index 69c2f5f..bfa608e 100644 (file)
@@ -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);
             }
         }