* - The exception that was thrown
* @param severity
* - The severity of the exception
*/
private void handleError(String errorMessage, Throwable exception, ErrorSeverity severity) {
VCardError vError = new VCardError();
vError.setErrorMessage(errorMessage);
vError.setSeverity(severity);
if(exception != null) {
vError.setError(exception);
}
((VCardErrorHandler)vcard).addError(vError);
}