--- PoolingException.java~ 2008-01-29 16:19:34.000000000 +0100 +++ PoolingException.java 2008-01-29 16:21:54.000000000 +0100 @@ -45,12 +45,12 @@ } public PoolingException(Exception ex) { - super(ex.getMessage()); + super(ex.getMessage(), ex); this.ex = ex; } public PoolingException(String s, Exception ex) { - super(s); + super(s, ex); this.ex = ex; }