예제 #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);
 }