diff options
Diffstat (limited to 'spss.server/src')
3 files changed, 3 insertions, 3 deletions
diff --git a/spss.server/src/test/at/gv/egovernment/moa/spss/server/config/ConfigurationProviderTest1.java b/spss.server/src/test/at/gv/egovernment/moa/spss/server/config/ConfigurationProviderTest1.java index 08f0a9523..705452856 100644 --- a/spss.server/src/test/at/gv/egovernment/moa/spss/server/config/ConfigurationProviderTest1.java +++ b/spss.server/src/test/at/gv/egovernment/moa/spss/server/config/ConfigurationProviderTest1.java @@ -55,7 +55,7 @@ public class ConfigurationProviderTest1 extends TestCase } catch (ConfigurationException e) { - throw new RuntimeException("Fehler beim Setup des Tests: ", e); + throw new RuntimeException("Fehler beim Setup des Tests: " + e.getMessage()); } } diff --git a/spss.server/src/test/at/gv/egovernment/moa/spss/server/config/ConfigurationProviderTest2.java b/spss.server/src/test/at/gv/egovernment/moa/spss/server/config/ConfigurationProviderTest2.java index 85515bce5..adf02809b 100644 --- a/spss.server/src/test/at/gv/egovernment/moa/spss/server/config/ConfigurationProviderTest2.java +++ b/spss.server/src/test/at/gv/egovernment/moa/spss/server/config/ConfigurationProviderTest2.java @@ -46,7 +46,7 @@ public class ConfigurationProviderTest2 extends TestCase } catch (ConfigurationException e) { - throw new RuntimeException("Fehler beim Setup des Tests: ", e); + throw new RuntimeException("Fehler beim Setup des Tests: " + e.getMessage()); } } diff --git a/spss.server/src/test/at/gv/egovernment/moa/spss/server/config/ConfigurationProviderTest3.java b/spss.server/src/test/at/gv/egovernment/moa/spss/server/config/ConfigurationProviderTest3.java index 3416fcfb0..7da2165cb 100644 --- a/spss.server/src/test/at/gv/egovernment/moa/spss/server/config/ConfigurationProviderTest3.java +++ b/spss.server/src/test/at/gv/egovernment/moa/spss/server/config/ConfigurationProviderTest3.java @@ -43,7 +43,7 @@ public class ConfigurationProviderTest3 extends TestCase } catch (ConfigurationException e) { - throw new RuntimeException("Fehler beim Setup des Tests: ", e); + throw new RuntimeException("Fehler beim Setup des Tests: " + e.getMessage()); } } |