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

        public ExceptionPacket(Exception exception, Dictionary <string, string> tags) : base(exception.Message, tags)
        {
            this.m_exception = new RavenException(exception);
        }
Exemplo n.º 3
0
 public ExceptionPacket(string message, string stackTrace, Dictionary <string, string> tags) : base(message, tags)
 {
     this.m_exception = new RavenException(message, stackTrace);
 }
Exemplo n.º 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);
        }