Commit ef79d635 authored by Dave Syer's avatar Dave Syer

Fix #40: extra catch block in BeanDefinitionLoader

parent f76662a6
......@@ -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
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment