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:
parent
b1cc500abf
commit
83f5c19a13
1 changed files with 4 additions and 0 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue