From Charlie: preserve the whole exception as our cause.

git-svn-id: https://samskivert.googlecode.com/svn/trunk@2609 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
samskivert
2009-08-17 21:09:26 +00:00
parent 3e1de492ed
commit 72cd55565c
@@ -29,6 +29,6 @@ public class DataTransferError extends java.lang.Error {
super("Database data transfer error");
}
DataTransferError(Exception ex) {
super(ex.getMessage());
super(ex);
}
}