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.

This commit is contained in:
amontano 2005-04-25 09:28:34 +00:00
parent b1cc500abf
commit 83f5c19a13

View file

@ -1651,6 +1651,10 @@ public void paste(int offset)
"beginning from:\n " + iwe.getCulpritInContext() + "\n" + "beginning from:\n " + iwe.getCulpritInContext() + "\n" +
"The culprit is probably the character '"+iwe.getCulprit()+"'."); "The culprit is probably the character '"+iwe.getCulprit()+"'.");
} }
catch (Exception e)
{
System.err.println("Could not convert: " + wylie);
}
} }
/** /**