diff options
-rw-r--r-- | sonar-batch-bootstrapper/src/main/java/org/sonar/batch/bootstrapper/BatchDownloader.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-batch-bootstrapper/src/main/java/org/sonar/batch/bootstrapper/BatchDownloader.java b/sonar-batch-bootstrapper/src/main/java/org/sonar/batch/bootstrapper/BatchDownloader.java index 83d003007e0..eead8dc6d5e 100644 --- a/sonar-batch-bootstrapper/src/main/java/org/sonar/batch/bootstrapper/BatchDownloader.java +++ b/sonar-batch-bootstrapper/src/main/java/org/sonar/batch/bootstrapper/BatchDownloader.java @@ -100,7 +100,7 @@ public class BatchDownloader { } catch (Exception e) { BootstrapperIOUtils.closeQuietly(output); BootstrapperIOUtils.deleteFileQuietly(toFile); - throw new RuntimeException("Fail to download the file: " + fullUrl); + throw new RuntimeException("Fail to download the file: " + fullUrl, e); } finally { BootstrapperIOUtils.closeQuietly(input); BootstrapperIOUtils.closeQuietly(output); |