is = (new URL(configUrl)).openStream();
}
} catch (Throwable t) {
+ // TODO Throws NoClassDefFoundError for ExceptionUtils
ExceptionUtils.handleThrowable(t);
}
File properties = new File(conf, "catalina.properties");
is = new FileInputStream(properties);
} catch (Throwable t) {
+ // TODO Throws NoClassDefFoundError for ExceptionUtils
ExceptionUtils.handleThrowable(t);
}
}
is = CatalinaProperties.class.getResourceAsStream
("/org/apache/catalina/startup/catalina.properties");
} catch (Throwable t) {
+ // TODO Throws NoClassDefFoundError for ExceptionUtils
ExceptionUtils.handleThrowable(t);
}
}