private bool ConsentHandler(Consent consent, Context context, Cause cause)
 {
     if (consent.isVetoed())
     {
         context.Reason     = consent.getReason();
         context.ErrorCause = cause;
         return(false);
     }
     return(true);
 }