public ExceptionPacket(string message, System.Diagnostics.StackTrace stackTrace, Dictionary <string, string> tags) : base(message, tags) { this.m_exception = new RavenException(message, stackTrace); }
#pragma warning restore 0414 public ExceptionPacket(Exception exception, Dictionary <string, string> tags) : base(exception.Message, tags) { this.m_exception = new RavenException(exception); }
public ExceptionPacket(string message, string stackTrace, Dictionary <string, string> tags) : base(message, tags) { this.m_exception = new RavenException(message, stackTrace); }
#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); }