Fix #40: extra catch block in BeanDefinitionLoader

pull/50/head
Dave Syer 11 years ago
parent f76662a6ec
commit ef79d63544

@ -161,6 +161,9 @@ class BeanDefinitionLoader {
try {
return load(ClassUtils.forName(resolvedSource, null));
}
catch (IllegalArgumentException ex) {
// swallow exception and continue
}
catch (ClassNotFoundException ex) {
// swallow exception and continue
}

Loading…
Cancel
Save