コード例 #1
0
 public SentryExceptionEvent(string exceptionType,
                             string exceptionValue,
                             List <Breadcrumb> breadcrumbs,
                             List <StackTraceSpec> stackTrace) : base(exceptionType, breadcrumbs)
 {
     this.exception = new ExceptionContainer(new List <ExceptionSpec> {
         new ExceptionSpec(exceptionType, exceptionValue, stackTrace)
     });
 }
コード例 #2
0
ファイル: Sentry.cs プロジェクト: fijal/sentry-unity-demo
 public SentryExceptionMessage(string app_version,
                               string event_id,
                               string exceptionType,
                               string exceptionValue,
                               List <Breadcrumb> breadcrumbs,
                               List <StackTraceSpec> stackTrace) : base(app_version, event_id, exceptionType, breadcrumbs)
 {
     this.exception = new ExceptionContainer(new List <ExceptionSpec> {
         new ExceptionSpec(exceptionType, exceptionValue, stackTrace)
     });
 }