AppfailReporting.Model.ExceptionDto.ExceptionDto C# (CSharp) 메소드

ExceptionDto() 공개 메소드

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