Scalien.ExceptionStackTrace.ExceptionStackTrace C# (CSharp) Method

ExceptionStackTrace() public method

public ExceptionStackTrace ( Exception exception ) : System
exception System.Exception
return System
        public ExceptionStackTrace(Exception exception)
        {
            message = exception.Message;

            stackTrace = GetExceptionStackTraces(exception);
        }