关于java中try catch的问题

try{}catch(Exception){} 有无可能try中的代码 和catch中的代码都没有执行到。小弟最近做个项目程序中try {
ImageModel result = future.get(10, TimeUnit.SECONDS);
LogModel entity = new LogModel();
entity.setLog(result.getMs() + result.getStatus());
entity.setCarId(result.getCarId());
App.getApplication().getFinalDb().save(entity);
switch (result.getStatus()) {
case 4:
uploadService.onSuccess(result);
break;
case 3:
uploadService.onFailure(result);
break;
default:
// uploadService.onFailure(result);
break;
}
} catch (Exception e) {
uploadService.onFailure(imageModel);
}

重记录的日子文件来看 好像try和catch都没执行到,为什么?我捕获的是Exception 照理来说应该所有的异常都能捕获啊