Provide info on possible cause of exception.
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@680710
13f79535-47bb-0310-9956-
ffa450edef68
standardContext.invalidWrapperClass={0} is not a subclass of StandardWrapper
standardContext.alreadyStarted=Context has already been started
standardContext.applicationListener=Error configuring application listener of class {0}
+standardContext.applicationListenerIAE=Error configuring application listener of class {0}. One possible cause is a lack of a public zero argument constructor.
standardContext.applicationSkipped=Skipped installing application listeners due to previous error(s)
standardContext.badRequest=Invalid request path ({0}).
standardContext.crlfinurl=The URL pattern "{0}" contains a CR or LF and so can never be matched.
listeners[i] + "'");
try {
results[i] = instanceManager.newInstance(listeners[i]);
+ } catch (IllegalAccessException iae) {
+ getLogger().error
+ (sm.getString("standardContext.applicationListenerIAE",
+ listeners[i]), iae);
+ ok = false;
} catch (Throwable t) {
getLogger().error
(sm.getString("standardContext.applicationListener",