More improvements to fail() messages (add primary error msg)

This commit is contained in:
Tim Donohue
2013-10-23 14:55:15 -05:00
parent 82a413511c
commit 1182c54b72
12 changed files with 22 additions and 22 deletions

View File

@@ -75,15 +75,15 @@ public class VersioningTest extends AbstractUnitTest {
catch (AuthorizeException ex)
{
log.error("Authorization Error in init", ex);
fail("Authorization Error in init");
fail("Authorization Error in init: " + ex.getMessage());
}
catch (SQLException ex)
{
log.error("SQL Error in init", ex);
fail("SQL Error in init");
fail("SQL Error in init: " + ex.getMessage());
} catch (IOException ex) {
log.error("IO Error in init", ex);
fail("IO Error in init");
fail("IO Error in init: " + ex.getMessage());
}
}