SharpRaven.Data.SentryException.SentryException C# (CSharp) Метод

SentryException() публичный Метод

public SentryException ( Exception e ) : System
e System.Exception
Результат System
        public SentryException(Exception e)
        {
            this.Module = e.Source;
            this.Type = e.GetType().FullName;
            this.Value = e.Message;
        }
SentryException