This commit is contained in:
Timo Westkämper 2009-03-30 08:03:29 +00:00
parent 163efaa7e2
commit ed168bce70

View File

@ -87,7 +87,7 @@ public abstract class HqlQueryBase<SubType extends HqlQueryBase<SubType>> extend
} catch (Exception e) {
String error = "Caught " + e.getClass().getName();
logger.error(error, e);
throw new RuntimeException(error, e);
throw new RuntimeException(e.getMessage(), e);
}
}