@@ -857,7 +857,8 @@ boolean isRestrictedServiceAllowed(Service service, boolean isServiceAdded) {
857
857
if (!isServiceAdded && !isNullOrBlank (cAcceptedUses )) {
858
858
String [] optionAndValue = cAcceptedUses .split (":" );
859
859
if (optionAndValue .length != 2 ) {
860
- printStackTraceAndExit ("Incorrect specification of accepted uses in constraint: " + constraint );
860
+ printStackTraceAndExit ("Incorrect specification of accepted uses in constraint: '"
861
+ + constraint + "'. Couldn't find option and value separated by ':'" );
861
862
}
862
863
String option = optionAndValue [0 ];
863
864
String value = optionAndValue [1 ];
@@ -879,7 +880,8 @@ boolean isRestrictedServiceAllowed(Service service, boolean isServiceAdded) {
879
880
case "ModuleAndFullClassName" :
880
881
String [] moduleAndFullClassName = value .split ("/" );
881
882
if (moduleAndFullClassName .length != 2 ) {
882
- printStackTraceAndExit ("Incorrect specification of accepted uses in constraint: " + constraint );
883
+ printStackTraceAndExit ("Incorrect specification of accepted uses in constraint: '"
884
+ + constraint + "'. Couldn't find module and classname separated by '/'" );
883
885
}
884
886
module = moduleAndFullClassName [0 ];
885
887
String fullClassName = moduleAndFullClassName [1 ];
@@ -889,7 +891,8 @@ boolean isRestrictedServiceAllowed(Service service, boolean isServiceAdded) {
889
891
case "ModuleAndPackage" :
890
892
String [] moduleAndPackage = value .split ("/" );
891
893
if (moduleAndPackage .length != 2 ) {
892
- printStackTraceAndExit ("Incorrect specification of accepted uses in constraint: " + constraint );
894
+ printStackTraceAndExit ("Incorrect specification of accepted uses in constraint: '"
895
+ + constraint + "'. Couldn't find module and classname separated by '/'" );
893
896
}
894
897
module = moduleAndPackage [0 ];
895
898
String packageValue = moduleAndPackage [1 ];
0 commit comments