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