Fix #40: extra catch block in BeanDefinitionLoader

This commit is contained in:
Dave Syer
2013-09-14 11:23:44 -07:00
parent f76662a6ec
commit ef79d63544

View File

@@ -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
}