if(EncodingType.EIGHT_BIT.equals(imppType.getEncodingType())) {
imppType.setUri(new URI(value));
}
else {
throw new VCardParseException("IMPP's encoding must be 8bit.");
}
if(group != null) {
imppType.setGroup(group);
}
vcard.addImpp(imppType);
}
catch(Exception ex) {
throw new VCardParseException("ImppType ("+VCardTypeName.IMPP.getType()+") ["+ex.getClass().getName()+"] "+ex.getMessage(), ex);
}
}