1、直接输出Exception
try {
//上传代码
} catch (Exception e) {
throw new RuntimeException("上传训练数据失败:" + e);
}
输出结果:只输出错误原因,不输出错误发生的位置
2、e.getMessage()
throw new RuntimeException("上传训练数据失败:" + e.getMessage());
输出结果:同1差不多
3、e.getStackTrace()
throw new RuntimeException("上传训练数据失败:" + e.getStackTrace())
输出结果:有用信息最少