private String getPassword(BufferedReader stdin, String prompt) throws IOException
{
try
{
NativeUtils nativeUtils = new NativeUtils();
return nativeUtils.getPassword(prompt);
}
catch(Throwable t)
{
// fall through -- it needs to be Throwable, not Exception...
}