@@ -58,7 +58,7 @@ public class ExportCourseQuestionsDiffCountService {
fos = new FileOutputStream(file);
ExportUtils.makeExcel(CourseQuestionsCountRetDto.class, ret, fos);
} catch (Exception e) {
- e.printStackTrace();
+ throw new RuntimeException(e);
} finally {
if (fos != null) {
try {