Exemplo n.º 1
0
 public void ReportFatalMessageWithStackTrace(string message, object[] args)
 {
     NonFatalProblem.ReportSentryOnly(Format(message, args));
 }
Exemplo n.º 2
0
 public void ReportNonFatalExceptionWithMessage(Exception error, string message, params object[] args)
 {
     NonFatalProblem.ReportSentryOnly(error, message);
 }
Exemplo n.º 3
0
 public ErrorResult NotifyUserOfProblem(IRepeatNoticePolicy policy, string alternateButton1Label,
                                        ErrorResult resultIfAlternateButtonPressed, string message)
 {
     NonFatalProblem.ReportSentryOnly(message);
     return(ErrorResult.OK);
 }
Exemplo n.º 4
0
 public void ReportNonFatalException(Exception exception, IRepeatNoticePolicy policy)
 {
     NonFatalProblem.ReportSentryOnly(exception);
 }
Exemplo n.º 5
0
 public void ReportFatalException(Exception e)
 {
     NonFatalProblem.ReportSentryOnly(e);
 }