SharpRaven.Data.SentryException.SentryException C# (CSharp) Method

SentryException() public method

public SentryException ( Exception e ) : System
e System.Exception
return System
        public SentryException(Exception e)
        {
            this.Module = e.Source;
            this.Type = e.GetType().FullName;
            this.Value = e.Message;
        }
SentryException