Include condition's location (class or method name) in message

Closes gh-1787
pull/2035/head
Andy Wilkinson 10 years ago
parent 9a491013c3
commit e2dd659dd1

@ -48,8 +48,8 @@ public abstract class SpringBootCondition implements Condition {
return outcome.isMatch(); return outcome.isMatch();
} }
catch (NoClassDefFoundError ex) { catch (NoClassDefFoundError ex) {
throw new IllegalStateException( throw new IllegalStateException("Could not evaluate condition on "
"Could not evaluate condition owing to internal class not found. " + classOrMethodName + " due to internal class not found. "
+ "This can happen if you are @ComponentScanning a " + "This can happen if you are @ComponentScanning a "
+ "springframework package (e.g. if you put a @ComponentScan " + "springframework package (e.g. if you put a @ComponentScan "
+ "in the default package by mistake)", ex); + "in the default package by mistake)", ex);

Loading…
Cancel
Save