コード例 #1
0
 public ExceptionInfoResponseBody(string exceptionId, string description, string breakMode, ExceptionDetails details)
 {
     this.exceptionId = exceptionId;
     this.description = description;
     this.breakMode   = breakMode;
     this.details     = details;
 }
コード例 #2
0
 public ExceptionDetails(string message, string typeName, string fullTypeName, string evaluateName, string stackTrace, ExceptionDetails innerException)
 {
     this.message        = message;
     this.typeName       = typeName;
     this.fullTypeName   = fullTypeName;
     this.evaluateName   = evaluateName;
     this.stackTrace     = stackTrace;
     this.innerException = innerException;
 }