diff options
author | David Gageot <david@gageot.net> | 2012-10-29 11:07:06 +0100 |
---|---|---|
committer | David Gageot <david@gageot.net> | 2012-10-29 11:33:26 +0100 |
commit | 2bbefed97d114cfd43b7e4f5c16bdf753297e96d (patch) | |
tree | fb96603d08728755f73ab820d8d6c2a703b2defb /sonar-core | |
parent | e0603258d5ec0702a0a0610aa3b680c8c9a44b09 (diff) | |
download | sonarqube-2bbefed97d114cfd43b7e4f5c16bdf753297e96d.tar.gz sonarqube-2bbefed97d114cfd43b7e4f5c16bdf753297e96d.zip |
SONAR-3895 Streaming export
Diffstat (limited to 'sonar-core')
-rw-r--r-- | sonar-core/src/main/java/org/sonar/core/persistence/DryRunDatabaseFactory.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-core/src/main/java/org/sonar/core/persistence/DryRunDatabaseFactory.java b/sonar-core/src/main/java/org/sonar/core/persistence/DryRunDatabaseFactory.java index 4b53e7eeae0..6b3c7c6e065 100644 --- a/sonar-core/src/main/java/org/sonar/core/persistence/DryRunDatabaseFactory.java +++ b/sonar-core/src/main/java/org/sonar/core/persistence/DryRunDatabaseFactory.java @@ -58,7 +58,7 @@ public class DryRunDatabaseFactory implements ServerComponent { return dbFileContent(name); } catch (SQLException e) { - throw new SonarException("Unable to create database for dry run", e); + throw new SonarException("Unable to create database for DryRun", e); } } |