AppfailReporting.Model.ExceptionDto.ExceptionDto C# (CSharp) Method

ExceptionDto() public method

public ExceptionDto ( string stackTrace, string message, string type ) : System
stackTrace string
message string
type string
return System
        public ExceptionDto(string stackTrace, string message, string type)
        {
            StackTrace = stackTrace;
            ExceptionMessage = message;
            ExceptionType = type;
        }
ExceptionDto