|
@@ -75,7 +75,9 @@ public class ConfigExamPaperTask {
|
|
}
|
|
}
|
|
|
|
|
|
if (!errors.isEmpty()) {
|
|
if (!errors.isEmpty()) {
|
|
- throw new RuntimeException(StringUtils.join(errors, " "));
|
|
|
|
|
|
+ // throw new RuntimeException(StringUtils.join(errors, " "));
|
|
|
|
+ log.error(StringUtils.join(errors, " "));
|
|
|
|
+ throw new RuntimeException(errors.get(0));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|