From 83f5c19a13d41aac8988bff850395dd7a49ade69 Mon Sep 17 00:00:00 2001 From: amontano Date: Mon, 25 Apr 2005 09:28:34 +0000 Subject: [PATCH] Now it catches exception and displays it to System.err when vowel errors (oo, ie, ee, etc.) come up in converting from wylie to tmw. --- source/org/thdl/tib/input/DuffPane.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/source/org/thdl/tib/input/DuffPane.java b/source/org/thdl/tib/input/DuffPane.java index acf0c4b..2387127 100644 --- a/source/org/thdl/tib/input/DuffPane.java +++ b/source/org/thdl/tib/input/DuffPane.java @@ -1651,6 +1651,10 @@ public void paste(int offset) "beginning from:\n " + iwe.getCulpritInContext() + "\n" + "The culprit is probably the character '"+iwe.getCulprit()+"'."); } + catch (Exception e) + { + System.err.println("Could not convert: " + wylie); + } } /**