try {
return IDNA.convertIDNToASCII(host,IDNA.USE_STD3_RULES|IDNA.ALLOW_UNASSIGNED);
} catch (StringPrepParseException e) {
throw new MalformedIDNException(e);
} catch (IndexOutOfBoundsException e) {
throw new MalformedIDNException(
new StringPrepParseException("The labels in the input are too long. Length > 64.",
StringPrepParseException.LABEL_TOO_LONG_ERROR,host,0)
);
}
/*