From 1937af76daa7b70e23d3873816ee2492e1437f6a Mon Sep 17 00:00:00 2001 From: jprocter Date: Thu, 13 Dec 2007 17:47:45 +0000 Subject: [PATCH] java 1.1 compatibility (again) --- src/jalview/io/JPredFile.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/jalview/io/JPredFile.java b/src/jalview/io/JPredFile.java index 6dcbccd..bd57050 100755 --- a/src/jalview/io/JPredFile.java +++ b/src/jalview/io/JPredFile.java @@ -302,8 +302,7 @@ public class JPredFile } catch (Exception e) { tal = null; - IOException ex = new IOException("Couldn't parse concise annotation for prediction profile. ("+e.getMessage()+")"); - ex.setStackTrace(e.getStackTrace()); + IOException ex = new IOException("Couldn't parse concise annotation for prediction profile.\n"+e); throw ex; } this.annotations = new Vector(); -- 1.7.10.2