* @param vcard
* @throws VCardParseException
*/
private void parseBeginType(String group, String value, VCardImpl vcard) throws VCardParseException {
try {
BeginType beginType = new BeginType();
if("VCARD".compareToIgnoreCase(value) == 0) {
if(group != null) {
beginType.setGroup(group);
}
vcard.setBegin(beginType);
}
else {