Fix #40: extra catch block in BeanDefinitionLoader
This commit is contained in:
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…
Reference in New Issue