コード例 #1
0
 public ExceptionPacket(string message, System.Diagnostics.StackTrace stackTrace, Dictionary <string, string> tags) : base(message, tags)
 {
     this.m_exception = new RavenException(message, stackTrace);
 }
コード例 #2
0
#pragma warning restore 0414

        public ExceptionPacket(Exception exception, Dictionary <string, string> tags) : base(exception.Message, tags)
        {
            this.m_exception = new RavenException(exception);
        }
コード例 #3
0
 public ExceptionPacket(string message, string stackTrace, Dictionary <string, string> tags) : base(message, tags)
 {
     this.m_exception = new RavenException(message, stackTrace);
 }
コード例 #4
0
#pragma warning restore 0414

        public ExceptionPacket(SentryConfig sentryConfig, Exception exception, Dictionary <string, string> tags) : base(sentryConfig, exception.Message, tags)
        {
            this.m_exception = new RavenException(exception);
        }