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