public void ReportFatalMessageWithStackTrace(string message, object[] args) { NonFatalProblem.ReportSentryOnly(Format(message, args)); }
public void ReportNonFatalExceptionWithMessage(Exception error, string message, params object[] args) { NonFatalProblem.ReportSentryOnly(error, message); }
public ErrorResult NotifyUserOfProblem(IRepeatNoticePolicy policy, string alternateButton1Label, ErrorResult resultIfAlternateButtonPressed, string message) { NonFatalProblem.ReportSentryOnly(message); return(ErrorResult.OK); }
public void ReportNonFatalException(Exception exception, IRepeatNoticePolicy policy) { NonFatalProblem.ReportSentryOnly(exception); }
public void ReportFatalException(Exception e) { NonFatalProblem.ReportSentryOnly(e); }